vote up 3 vote down star
1

The question header is clear, i want to know why its different and why, when to select it for my project?

flag

6 Answers

vote up 4 vote down check

I wrote a blog post on this a while ago. In short, it takes a fundamentally different approach to ORM than Hibernate, ECO, and the other ORMs that I have looked at. You may think this approach is better, worse, or unimportant, but if you look deep enough it's hard to dispute that it is different. But don't take my word on it. If you're really interested in this subject, I strongly recommend reading this technical paper and this interview in ACM Queue.

link|flag
Great blog post btw. – Daniel Auger Mar 5 at 18:38
vote up 0 vote down

Some of the best talent in the ORM world in .NET seem to be working on projects such as NHibernate (free-open-source; I use it) and LLBLGen Pro (commercial).

NHibernate is the reigning standard for enterprise-quality full-scale multi-vendor ORM. NHibernate is also the reigning standard for a pure implementation of ORM, permitting you the developer to write domain models completely independently from the NHibernate infrastructure, and completely eliminating code-generated classes.

NHibernate may look scary at first. But it is actually fairly friendly once you work with it a bit, and work has been underway since July to make NHibernate nearly configuration-free.

link|flag
vote up 1 vote down

ADO.NET is not an ORM.

Basically the difference is the level of abstraction used in each one.

With ADO, you basically query the DB and use the results as objects, is like a bridge between the RDBMS and your objects.

You model your DB and then you create object from that model. That's why it is an Entity Framework ( db entities )

ORM are not for querying or represent database records as objects ( although that's how everyones uses them anyway - me included - ) but a way to persist your object model into a relational database.

They are Object to Relational Mapping ( not Relational to Object Mapping )

So, you choose one or the other, when you have a domain ( object ) model and you want something to persist it ( to a RDBMS ) or when you have a entity model and you want to use it as objects in your app.

link|flag
vote up 0 vote down

What different? It didn't learn from all the other ORMs.

Here are the issues I've been tracking for InfoQ

Does LINQ-to-Entities really return different results depending on previous queries?

Working Around Entity Framework's Large Data Model Issues

No Change Tracking for ADO.NET Entity Framework 2010

And this tool is a must-have if you do decide to use it.

Meta-data Synchronization Tools for LINQ to SQL and ADO.NET Entity Framework

link|flag
vote up 1 vote down

From what I've read, it has good support for WCF remoting/binary serialization, which is something many ORMs don't support very well (if at all). It might be worth looking into if you want to create a rich client/server/remoting app with ORM on the client side.

link|flag
I think you may be thinking of ADO.NET Data Services, which has a nice REST interface and WCF support. – Jonathan Allen Mar 5 at 1:35
To clarify I'm talking about mapping entities with wcf services as their source. – Daniel Auger Mar 5 at 1:58
What EF has, I wouldn't call "good support" ... google: Entity Framework WCF, and you'll only find page after page of issues... – Pop Catalin Mar 5 at 2:25
Well, yes good is relative, but what other ORMs support WCF as a source with binary serialization across the wire? Personally, I prefer NHibernate over EF in most cases, but I think that in this case EF has a better story IMHO. – Daniel Auger Mar 5 at 4:04
vote up 3 vote down

This is probably not the answer you are looking for but I dont think you should use it in your project. It is very young and not very complete. Wait until the next version comes out.

If you insist on using Entity Framework there are a few good things about it. A nice one is the way it allows for complex mapping in a very simple way. And of course because it is a microsoft technology the IDE integration is nice.

But like I said, I tried it and I dont beleive it is ready for real use.

Anyway good luck at your project

link|flag

Your Answer

Get an OpenID
or

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