It would save a lot of typing if we could have the UpdateCheck value in the column attribute defaulted by a UpdateCheckDefault value in the Table attribute. Example - I'd like this: [ Table (Name= "Person" , UpdateCheckDefault= UpdateCheck .Never)] public class Person { [ Column ()] public string FirstName; [ Column ()] public string LastName; [ Column (UpdateCheck= UpdateCheck .WhenChanged)] public string SSN; } instead of this: [ Table (Name= "Person" )] public class Person
Read More...