How can I update a single property of a record without retrieving it first? I\'m asking in the context of EF Code First 4.1
Says I have a class User
I'm actually dealing with this right now. What I decided to do was override the ValidateEntity method in the DB context.
protected override DbEntityValidationResult ValidateEntity(DbEntityEntry entityEntry, IDictionary
I'm sure there's some holes that can be poked in it, but it seemed better than the alternatives.