Hi Michael,
Thank you for contacting Syncfusion support.
While performing CRUD operation in Grid with IsIdentity column it is essential to return updated data in Json format from controller. Void type also supports so if you are not using isIdentity column in Grid Use Void type because it is not necessary to return updated data while using void type and also changes will be reflected automatically in database and in Grid. Please refer to the below code example.
//Perform update
public void PerformUpdate(OrderTable value)
{
db.Entry(value).State = EntityState.Modified;
db.SaveChanges();
} |
Regards,
Jayaprakash K.