up vote 8 down vote favorite
12
share [g+] share [fb]

I would like to build a custom LINQ Provider. Mostly for learning purposes, but it may be usefull in the future. I've heard it's not a simple thing to do, but...

Where are some good tutorials on writing a custom LINQ Provider?

link|improve this question

feedback

6 Answers

up vote 0 down vote accepted

You also have this blog entry: Writing custom LINQ provider

link|improve this answer
feedback

Matt Warren (one of the primary guys behind LINQ to SQL) probably has the best series of posts over on his blog at http://blogs.msdn.com/mattwar/

link|improve this answer
2  
This Rules.{ 15 } – Jason Punyon Apr 3 '10 at 18:29
Thanks for that. I was looking for this series of articles. – Umar Farooq Khawaja May 5 '11 at 14:52
feedback

It's more than not simple - it's really, really hard, I believe. (From what I've seen of the difficulties Frans Bouma has run into, for instance.) Things like the differences between how C# and VB handle method resolution make it trickier, along with VB's helper methods which can appear in the expression trees unexpectedly (to the uninitiated).

However, you might want to look at LINQ to Amazon and LINQ to Active Directory to see how they do things.

link|improve this answer
not simple indeed - bloody hard, I tried once but I gave up after a while. I may try again when I understand expression trees and lambdas a bit better – Nathan W Oct 31 '08 at 7:04
feedback

You can try LinqExtender. It will enable you to get up with a LINQ provider in less time.

Please try the example where i have used it to make a simple provider like LINQToTwitter.

http://weblogs.asp.net/mehfuzh/archive/2009/01/01/creating-linqtotwitter-library-using-linqextender.aspx

link|improve this answer
feedback

Being someone that is in the process of writing a LINQ provider I can tell you that the best way is the look at existing ones that are available and reverse engineer them.

A good project I came across (which is still in its infancy) is LINQ to TFS and it's simple and it's good to get started.

I also have read a lot of the code for the LINQ to SharePoint as it's got both the source and unit tests so you can see how it operates.

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.