In datatables with ADO.NET an updatecommand updates full row.That means that even if you change 1 cell all collumns of the row would be updated… This is not the problem always.
However although reading from msdn i couldnt find whether this this true for Entity Framework. Updating a property would create a full update sql query or only for the column ?
In datatables with ADO.NET an updatecommand updates full row.That means that even if you
Share
According to this tested and verified answer How to update only one field using Entity Framework? only updated fields are updated in sql not the entire object.