up vote 7 down vote favorite
9
share [g+] share [fb]

What's the best open source LINQ provider (in terms of completeness)?

I'm developing an open source LINQ provider myself and I'd like to borrow as many ideas as I can, avoid common pitfalls, etc.

Do not restrict yourself to database LINQ providers, any provider suggestion is welcome.

link|improve this question

79% accept rate
Comment to closers: "not constructive"? I learned a lot from the proposed providers. I'd say learning is constructive, but I guess you don't like learning... – Mauricio Scheffer Sep 17 '11 at 15:27
feedback

8 Answers

up vote 6 down vote accepted

There is another implementation "re-linq".

Have a look here:

Hope it helps, Patrick

link|improve this answer
re-linq looks promising. very impressed by its power and completeness. will take it for a test drive this weekend. – Sarmaad Mar 3 '10 at 14:04
feedback

Our object database db4o comes with an open source LINQ provider. We even provide an implementation for CompactFramework. To my knowledge this is the only LINQ provider available for CompactFramework.

link|improve this answer
feedback

LINQ to Amazon web services.

http://linqinaction.net/files/folders/linqinaction/entry1952.aspx

link|improve this answer
LINQ in Action is an excellent book. Good recommendation. – Gordon Bell Oct 8 '08 at 17:54
feedback

Look at LINQExtender for an example of an extendable IQueryable implementation. It not only provides a good open source example, but you may find you could use that instead of developing an IQueryable implementation from scratch.

link|improve this answer
nice, but too invasive... – Mauricio Scheffer Oct 11 '08 at 21:25
feedback

I have a pseudo-LINQ provider: "Push LINQ". It's like Parallel Extensions in that it changes how an existing in-memory data source is used, rather than bringing another actual data source into play.

The bits are available as part of my MiscUtil project. It's probably best to ping me privately if you get into it and want to know more (or make suggestions).

link|improve this answer
Looks interesting, I'll check it out later at home. – Mauricio Scheffer Oct 6 '08 at 17:08
feedback

The DbLinq project is working on linq2sql support for other databases, and is now working with the Mono project to become a full System.Data.Linq implementation.

link|improve this answer
feedback

We have a complete linq provider in Signum Framework

You can find the source here as well. (All the Linq subtree).

I'ld also take a look to Wayward blog

link|improve this answer
feedback

LinqExtender gives a way to get started with LINQ to anything without doing the complex Expression tree parsing. It gives out more or less easy data structure, without sacrificing things like projection , where , order by etc. Its still under development and a starting point could be LinqToFlickr.

Hope you find it useful and its open to any suggestion

link|improve this answer
LINQExtender was already mentioned – Mauricio Scheffer Oct 17 '08 at 0:40
feedback

Your Answer

 
or
required, but never shown

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