Class CRUDModel
Used to model bind the values while performing CRUD operation using DataManager.
Inheritance
System.Object
CRUDModel
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Syncfusion.JavaScript
Assembly: Syncfusion.EJ.dll
Syntax
public class CRUDModel
Constructors
CRUDModel()
Declaration
public CRUDModel()
Properties
Action
Specifies the action initiated the request.
Declaration
public string Action { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Added
Specifies the list of added records while batch editing.
Declaration
public List<object> Added { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.Object> |
Remarks
The Added property will holds values on batch editing only
Changed
Specifies the list of updated records while batch editing.
Declaration
public List<object> Changed { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.Object> |
Remarks
The Changed property will holds values on batch editing only
Deleted
Specifies the list of deleted records while batch editing.
Declaration
public List<object> Deleted { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.Object> |
Remarks
The Deleted property will holds values on batch editing only
Key
Specifies the Primary key value.
Declaration
public object Key { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
KeyColumn
Specifies the Primary key column name.
Declaration
public string KeyColumn { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Params
Holds the additional parameters passed.
Declaration
public IDictionary<string, object> Params { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IDictionary<System.String, System.Object> |
Table
Specifies the Table name(if any) to be updated.
Declaration
public string Table { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Value
Specifies the modified/added record.
Declaration
public object Value { get; set; }
Property Value
Type | Description |
---|---|
System.Object |