vote up 8 vote down star
1

So the ADO.NET Entity Framework has gotten a little bit of bad press (in the form of blog entries and a petition) but I don't want to rush to judgement. I'm limited in time for experimentation but I was wondering has anyone worked with it yet with more empirical feedback?

Finally, what are thoughts on using NHibernate which has been around for a long time and may be more mature than the ADO.NET Entity Framework.

flag

57% accept rate

8 Answers

vote up 9 vote down check

I haven't tried EF, but I have tried NHibernate. And with that, I can say the absolute best ORM I've ever used is SubSonic. SubSonic's single greatest feature is convention over configuration. You have to do almost zero configuration so getting up & running is very speedy. Check out the plethora of videos on the site.


This got down voted? Man ... haters.

link|flag
Interesting. At the time you wrote this, Fluent was not yet ready. But Fluent does for NHibernate what SubSonic does for you: convention over configuration. But in the end it depends of domain of usage which tool fits best and with legacy mapping (can hardly be well used with conventions), NHibernate does the drill better then any I've seen any (commercial) ORM. – Abel Nov 7 at 11:44
vote up 2 vote down

If zero configuration is main advantage of SubSonic you can look at Fluent nHibernate

link|flag
vote up 1 vote down

"I haven't tried EF, but I have tried NHibernate. And with that, I can say the absolute best ORM I've ever used is SubSonic. SubSonic's single greatest feature is convention over configuration. You have to do almost zero configuration so getting up & running is very speedy. Check out the plethora of videos on the site. "

It is absolutely wrong. Did you try Subsonic with Oracle? It can be sadden for use it. And it is a code generator not ORM.

link|flag
vote up 0 vote down

I am coming around to liking Entity. It takes a while to figure out what all of its error messages mean but once you get used to it it really does a great job. The biggest drawback it has right now is no real support for going disconnected.

link|flag
vote up 0 vote down

I've used SubSonic, LinqToSql, LinqToEntities. Now i'm trying NHibernate. For now - i like NHibernate (probably cause i haven`t met problems enough). Worst of them all - LinqToEntities (that's only my opinion, of course).

link|flag
vote up 0 vote down

I do have a problem with SubSonic. SubSonic choked to death on tables with same name but different schema. I don't want to discuss the best practices of building a database, because I did not make the call to do so.( When it comes to raise voice make a point and keep the job, I'd rather keep my job. :) )

link|flag
That's a good insight - where I work someone designed a database in the same way with duplicated names across multiple schemas. – David in Dakota May 4 at 22:27
vote up 3 vote down

NHibernate may be more mature. That does not necessarily mean it is a "better" solution. Having used it at my job for some time, I would personally prefer to use almost anything than NHibernate (even straight SQL, if migration were remotely feasible). The number of error messages thrown by NHibernate that don't mean anything (or that do mean something but should never occur) is absolutely staggering, as are some of its default behaviours (such as flushing the session once for each object returned in a Find).

Personally, when I have a choice, I use LINQ to SQL for all database work.

link|flag
does the subsiding support recently spouted about in the 'sphere make you question this decision? i feel as though i needed to abandon it for fear that future needs for support would be ignored by ms. thoughts? – brady gaster Dec 10 '08 at 3:12
I'm not terribly concerned. If it's abandoned completely (unlikely), it's always possible for a third party to build a LINQ to SQL layer ontop of plain LINQ (which is not going anywhere), similar to the groups that did LINQ to AD or LINQ to NHibernate. Someone would almost certainly do this. – DannySmurf Dec 10 '08 at 18:48
What errors are you getting? – Mauricio Scheffer Feb 4 at 19:26
1  
My favourite one is "expected affected row count: 1, actual affected row count: 0," without an explanation or even a table name. There are lots more, but that one's fairly demonstrative. – DannySmurf Feb 4 at 19:41
vote up 2 vote down

Microsoft have all but admitted that the ADO.Net Entity Framework isn't an ORM (I can't find a reference currently). So if you think of the Entity Framework as a query engine then apparently it is really good at what it does. For a complete ORM solution you might want to look elsewhere however.

The following blog post seems to bear out this difference:

http://blogs.msdn.com/dsimmons/archive/2008/05/17/why-use-the-entity-framework.aspx

link|flag

Your Answer

Get an OpenID
or

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