vote up 5 vote down star
4

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.

flag

67% accept rate

7 Answers

vote up 1 vote down

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|flag
vote up 0 vote down

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|flag
LINQExtender was already mentioned – Mauricio Scheffer Oct 17 '08 at 0:40
vote up 1 vote down

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|flag
vote up 1 vote down

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|flag
Looks interesting, I'll check it out later at home. – Mauricio Scheffer Oct 6 '08 at 17:08
vote up 1 vote down

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|flag
nice, but too invasive... – Mauricio Scheffer Oct 11 '08 at 21:25
vote up 2 vote down

LINQ to Amazon web services.

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

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

Your Answer

Get an OpenID
or

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