Hi, I have been reading how inheritance works in LINQ and haven’t figured out how to make an update to the value that is used as its discriminator value. I have been using the employee example in David Hayden's posting " LINQ To SQL Discriminator Column Example - Inheritance Mapping Tutorial " . I changed Employee’s “Inheritance Modifier” to (None), so I have the following: Class Layout [ Table (Name= "dbo.Employee" )] [ InheritanceMapping (Code= "2" , Type= typeof ( CommissionedEmployee ))] [ InheritanceMapping
Read More...