In LINQ to SQL, Can we inherit our entity classes from some other class or interface. I have some common work for all my entities, which I want to code at some common place and call it once.

Regards Parminder

link|improve this question

70% accept rate
feedback

2 Answers

up vote 3 down vote accepted

@Jason's answer is useful for manually tweaking each class. To modify all generated classes to use the same base class there is an attribute in the .dbml file that can be edited manually (no UI for it in VS2008).

Add a EntityBase xml attribute into the <Database> xml element, its value is the full name of the base class.

<Database ... EntityBase="MyNamespace.MyBaseClass" ...>
...
</Database>

Its used by the LINQ to Entity Base project.

link|improve this answer
DevStuff This is really great. cheers Parminder – Parminder Nov 16 '09 at 10:25
feedback

Yes, this is possible. Use partial classes. If MyEntity is your LINQ to SQL entity class, add a partial implementation as follows:

partial class MyEntity : MyBaseClass, IMyInterface {
    // do it
}

You can even make your entity class an abstract class.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.