Hi,
I'm not a real database expert, and i was wondering if you could tell me what kind of lock Sql server uses in combination with the entity framework in the following cases:
I read 40 records from a table, update them in code and call SaveChanges to the context
I read 1 record from a table, update it in code and call SaveChanges to the context
I create 1 new record (object) in code and call SaveChanges to the context
I create 40 new records (object) in code and call SaveChanges to the context
I also wondered, is it somehow possible to see which locks are used (set?) by Sql Server?
Michel