Class RowOperationResponse
- Namespace
- Datafication.Server.Core.Models
- Assembly
- Datafication.Server.Core.dll
Represents the response from a row operation.
public class RowOperationResponse
- Inheritance
-
objectRowOperationResponse
Properties
AffectedRowIndex
Gets or sets the index of the affected row (for insert/update/delete operations).
public int? AffectedRowIndex { get; set; }
Property Value
- int?
CurrentRowCount
Gets or sets the current row count after the operation.
public int CurrentRowCount { get; set; }
Property Value
- int
DataBlockId
Gets or sets the DataBlock ID that was modified.
public string DataBlockId { get; set; }
Property Value
- string
Message
Gets or sets the success message.
public string Message { get; set; }
Property Value
- string