vote up 9 vote down star
3

I'm looking for an ORM that offers complete or near-complete LINQ support.

LINQ to SQL
- Supports about everything inside of LINQ (.Contains, Math.Log, etc)
- Cannot eager load relationship properties without creating a new datacontext

ADO.NET Entity Framework
- Terrible LINQ support (lots of missing features).
- Great mapping features - Can eager load on demand with .Include methods on an ObjectQuery<>

LightSpeed
- Great LINQ support missing some features (.Contains within a Where)
- Some of the SQL generated is very inefficient.

None of these seem to fit just perfectly, I honestly wish I could take bits and pieces from each. I personally really like ADO.NET EF except the features it is missing make it just frustrating to use.

I know some people praise NHibernate up and down and I'm not knocking it but I spent today trying it out and it's ok but it's LINQ support is not that great.

flag

Just curious... why is LINQ so important to you to access databases? – ocdecio Mar 1 at 22:15

9 Answers

vote up 3 vote down check

NHibernate with Linq to NHibernate

link|flag
Check out this: blog.dataobjects.net/2009/07/… – Alex Yakunin Jul 31 at 12:40
Hi Alex, thanks for the info - though I have to tell you, all I see there is: NHibernate is way fast enough for my purposes. ;) – Tobias Hertkorn Aug 5 at 16:21
Performance tests are always subjective. But as I discovered later, "near-complete LINQ support" isn't what can be said about NHibernate as well, and this is much less subjective: ormbattle.net – Alex Yakunin Nov 23 at 22:30
vote up 0 vote down

I had the same issues with EF. I wanted to use it for its mapping but backed out of it due ot the lack of good linq support.

Im not sure what you mean by eager load relationship properties but you can eager load with plain linq-2-sql.

You use LoadOptions.LoadWith<T>(expression).

link|flag
Right, but I'd like to do it at a query level. I might want to query x relationship for one query but not another. But I don't want to have to create a new datacontext just to query once. – Chad Moran Mar 1 at 22:50
vote up 3 vote down

Llblgen seems to have pretty good linq support. Frans has a whole series of blogs posts on his development of it http://weblogs.asp.net/fbouma/archive/2007/09/11/developing-linq-to-llblgen-pro-day-0.aspx

link|flag
vote up 2 vote down

OpenAccess http://www.telerik.com/products/orm.aspx

link|flag
vote up 0 vote down

Signum Framework has a linq provider, http://www.signumframework.com/DatabaseQuery.ashx and has a completely different way of loading entitities. No datacontext.

It only works fine with new applications.

link|flag
vote up 0 vote down

Genome.

link|flag
vote up 2 vote down

DataObjects.Net has near-complete LINQ support.

link|flag
vote up 4 vote down

Try DataObjects.NET. I'm one of the DO developers. And my latest activity within that project is to implement LINQ for DataObjects. So I could describe it briefly:

  • Supports almost all LINQ methods except Last/LastOrDefault/Aggregate/Reverse/TakeWhile/SkipWhile etc. and methods that has .NET specific arguments - such as IComparer (nobody supports them).
  • Almost all string and Math methods supported (and you have ability to write your own function mappings!).
  • Complex scenarios with GroupBy\SelectMany\Contains\Single\etc. in subqueries and correlated subqueries are supported.

We have about 1000 tests of LINQ implementation and 99% of them are passed. So I can say that current implementation is close to EF. Some methods do not work with EF, some with our framework. Check this brief description http://www.x-tensive.com/Products/DO/.

link|flag
Also check out our blog blog.dataobjects.net – Alexis Kochetov Jul 31 at 12:38
vote up 1 vote down

The newest version 3.0 of SubSonic has been copletely rewritten around the use of Linq - http://subsonicproject.com/docs/3.0_Summary

link|flag

Your Answer

Get an OpenID
or

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