tags:

views:

68

answers:

1

How could I extend my data context objects (generated by Linq To Sql) so I can attach another interface to them, add other properties etc.? I don't want this to get overwritten the next time I'm rebuilding the classes from the database.

+1  A: 

That's what partial classes are for. Just add your stuff in a new cs file with the class of the same name declared partial.

Robert