There were supposedly some classes in the LINQ to SQL provider model that were sealed--but I never really figured out exactly which classes need to be 'unsealed' in order to use it.

Hypothetically speaking, which classes do I need to unseal to enable the provider model?

[EDIT: I know that the sealed keyword means that it's not supposed to be modified, but let's just assume that unsealing a BCL class is not the issue here.]

link|improve this question

69% accept rate
feedback

1 Answer

You can create your own LINQ provider. It wouldn't be a LINQ to SQL provider though, it would be a LINQ to [whatever] provider.

More details at: http://dotnetslackers.com/articles/csharp/LINQProviderBasics.aspx

Or you could check out the DB Link Project: http://code2code.net/DB_Linq/

link|improve this answer
Technically, this doesn't answer the actual question, but does answer a /much/ better question. – Alex Lyman Dec 20 '08 at 6:06
feedback

Your Answer

 
or
required, but never shown

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