Resharper 5 and Asp.Net MVC
Just discovered this now. When you add a new action to an ASP.Net MVC controller, Resharper 5 marks the View() method as “in error”:
Posted at 5pm on 24/03/10 | no comments | Filed Under: ASP.Net, c# read on
Entity Framework Change Tracking
I needed to know how the Entity Framework does its change tracking, so I wrote a simple test to see what’s happening. Since we only needed to know what happened when you modify a property on an entity, I focused on that aspect (and not how deleting entities is tracked, for example).
Anyway: my conclusions… It seems that the Entity Framework sets the EntityState of an entity to Modified anytime you change a property. It does