What ORM frameworks for .NET Do You Like Best? - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T12:18:23Zhttp://stackoverflow.com/feeds/question/249550http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/249550/what-orm-frameworks-for-net-do-you-like-best8What ORM frameworks for .NET Do You Like Best?pablito2008-10-30T08:15:46Z2009-09-14T14:27:02Z
<p>I'm writing an application from scratch, I am not pretty sure which one to use.</p>
<ul>
<li>Microsoft Entity Framework</li>
<li>NHibernate</li>
<li>Gentle.NET</li>
<li>Other</li>
</ul>
<p>Any guidance or opinions on the advantages and disadvantages of each would be helpful.</p>
http://stackoverflow.com/questions/249550/what-orm-frameworks-for-net-do-you-like-best/249569#2495691Answer by James Newton-King for What ORM frameworks for .NET Do You Like Best?James Newton-King2008-10-30T08:25:39Z2008-10-30T08:25:39Z<p>I've had good experiences with <a href="http://www.mindscape.co.nz/products/LightSpeed/default.aspx" rel="nofollow">LightSpeed</a>.</p>
http://stackoverflow.com/questions/249550/what-orm-frameworks-for-net-do-you-like-best/249576#2495764Answer by Joachim Kerschbaumer for What ORM frameworks for .NET Do You Like Best?Joachim Kerschbaumer2008-10-30T08:30:07Z2008-10-30T08:30:07Z<p>NHibernate allows to use POCO files which makes reuse of your existing object model very easy. it als has some advanced features like several caching levels, experimental linq support, etc...</p>
http://stackoverflow.com/questions/249550/what-orm-frameworks-for-net-do-you-like-best/249588#2495884Answer by SharePoint Newbie for What ORM frameworks for .NET Do You Like Best?SharePoint Newbie2008-10-30T08:38:08Z2008-10-30T08:38:08Z<p>Hi,</p>
<p>LightSpeed is very good and we have had success with it in the past.</p>
<p>I would not reccomend Linq to SQL as it is tied to SQL Server and only supports Table Per Hierarchy.</p>
<p>Entity Framework or NHibernate if you cannot dish out the extra cash for lightspeed.
NHibernate has a learning curve though while with EF you are good to go. NHibernate supports POCO objects, so if you already have an objet model in place, NHibernate is the way to go.</p>
http://stackoverflow.com/questions/249550/what-orm-frameworks-for-net-do-you-like-best/249592#2495920Answer by Bjørn for What ORM frameworks for .NET Do You Like Best?Bjørn2008-10-30T08:39:33Z2008-10-30T08:39:33Z<p>In answer to Bernie: I assume you are meaning Linq to SQL. That is mainly meant for RAD purposes, on the other side Entity Framework is probably what MS intends for enterprise development.</p>
<p>But I would also strongly consider going for Microsofts stuff, unless there was some features in the existing frameworks that are needed for the project at hand.</p>
http://stackoverflow.com/questions/249550/what-orm-frameworks-for-net-do-you-like-best/249595#2495951Answer by Bjørn for What ORM frameworks for .NET Do You Like Best?Bjørn2008-10-30T08:41:20Z2008-10-30T08:41:20Z<p>Another open source option, by the way: Subsonic</p>
<p><a href="http://subsonicproject.com/" rel="nofollow">http://subsonicproject.com/</a></p>
http://stackoverflow.com/questions/249550/what-orm-frameworks-for-net-do-you-like-best/249629#2496290Answer by alex for What ORM frameworks for .NET Do You Like Best?alex2008-10-30T09:10:08Z2008-10-30T09:10:08Z<p>I use the Flixon Site Generator extensively. This has similarities with EF as it creates a rich domain model (including many-many relationships) and is structured as loosley coupled layers (UI/BLL/DAL) etc... basically, you just point at your SQLServer (2005 and above) database and hit the OK button - that's simplicity for me!! As it's patterns based, it's pretty simple to get to grips with the architecture as well.</p>
<p>There's info and a version to be found here:</p>
<p><a href="http://forums.asp.net/t/1318180.aspx" rel="nofollow">http://forums.asp.net/t/1318180.aspx</a></p>
http://stackoverflow.com/questions/249550/what-orm-frameworks-for-net-do-you-like-best/249640#2496402Answer by Martin for What ORM frameworks for .NET Do You Like Best?Martin2008-10-30T09:16:20Z2008-10-30T09:16:20Z<p>We use <a href="http://www.entityspaces.net" rel="nofollow">EntitySpaces</a> with MyGeneration for code generation and find it to be great.</p>
http://stackoverflow.com/questions/249550/what-orm-frameworks-for-net-do-you-like-best/249649#2496491Answer by maud-dib for What ORM frameworks for .NET Do You Like Best?maud-dib2008-10-30T09:21:14Z2008-10-30T09:21:14Z<p>I've tried a few (even written one) and found nHibernate to be by far the best and the easiest to use in real world situations (where linq to sql falls flat on it's face).</p>
http://stackoverflow.com/questions/249550/what-orm-frameworks-for-net-do-you-like-best/249659#2496599Answer by Jon Limjap for What ORM frameworks for .NET Do You Like Best?Jon Limjap2008-10-30T09:29:40Z2008-10-30T09:29:40Z<p>Off the top of my head:</p>
<ul>
<li><strong><a href="http://www.hibernate.org/343.html" rel="nofollow">NHibernate</a></strong> - Which I have experience using and I feel is best for most purposes, but then I'm biased. Open source port of Java's Hibernate.</li>
<li><strong><a href="http://www.llblgen.com/defaultgeneric.aspx" rel="nofollow">LLBLGen</a></strong> - Full fleged ORM by Frans Bouma</li>
<li><strong><a href="http://subsonicproject.com/" rel="nofollow">Subsonic</a></strong> - open source project led by Rob Connery. Great for smaller scale projects, at least until LINQ to SQL came along (very subjective opinion!).</li>
<li><strong><a href="http://msdn.microsoft.com/en-us/library/aa697427(VS.80).aspx" rel="nofollow">Microsoft Entity Framework</a></strong></li>
<li><strong><a href="http://www.objectmapper.net/" rel="nofollow">ObjectMapper.NET</a></strong></li>
</ul>
http://stackoverflow.com/questions/249550/what-orm-frameworks-for-net-do-you-like-best/249680#2496804Answer by oliverkurowski for What ORM frameworks for .NET Do You Like Best?oliverkurowski2008-10-30T09:42:41Z2008-10-30T09:42:41Z<p>We use NHibernate, mainly because:</p>
<ul>
<li>It supports other databases, in our case Oracle. Linq to SQL and EntityFramework support only SQLServer out of the box</li>
<li>Use of POCO objects. You don't need to put any attributes or other markup inside your class.</li>
<li>Many side projects. There is for example one project (Fluent NHibernate) that replaces the mapping xml file with a class implementation, or an Linq implemenation for Nhibernate.</li>
</ul>
http://stackoverflow.com/questions/249550/what-orm-frameworks-for-net-do-you-like-best/249799#2497991Answer by duckworth for What ORM frameworks for .NET Do You Like Best?duckworth2008-10-30T10:56:26Z2008-10-30T10:56:26Z<p>We use <a href="http://ibatis.apache.org/dotnetdownloads.cgi" rel="nofollow">iBatis</a>. It is simple and lightweight enough to do the job without bringing too much complexity and overhead to the project.</p>
http://stackoverflow.com/questions/249550/what-orm-frameworks-for-net-do-you-like-best/254491#2544913Answer by phat shantz for What ORM frameworks for .NET Do You Like Best?phat shantz2008-10-31T18:44:08Z2008-10-31T18:44:08Z<p>$$$ <strong>Ideablade</strong> DevForce <br>[<a href="http://www.ideablade.com/DevForceClassic/DevForceClassic_overview.html" rel="nofollow">http://www.ideablade.com/DevForceClassic/DevForceClassic_overview.html</a>]</p>
<p>$ <strong>DevExpress</strong> XPO (Express Persistence Objects)<br>
[<a href="http://www.devexpress.com/Products/NET/ORM/" rel="nofollow">http://www.devexpress.com/Products/NET/ORM/</a>]</p>
<p>Both of these cost money. In their proportions, each is worth what you'll pay.</p>
<p>If you are broke and have more time than money, try <strong>SubSonic</strong>.<br>
[<a href="http://subsonicproject.com/" rel="nofollow">http://subsonicproject.com/</a>]</p>
<p>Ideablade is <em>the</em> enterprise and n-tier tool, capable of creating entities even from services, as well as views and stored procedures. </p>
<p>DevExpress XPO is quite robust.</p>
<p>Both Ideablade an DevExpress tools easily connect as data sources to controls Microsoft and 3rd party tools.</p>
<p>SubSonic seems to have many comparable characteristics of the expensive tools, but any new user will "pay" days and weeks before they learn it. The documentation exists of trial and error, syntax help, and forums on the web site. Compared to the other tools, it's like working in the dark.</p>
<p>Sometimes "free" is very expensive.</p>
<p>If you have a client who is paying for your time, IdeaBlade can be worth a month of work. DevExpress can be worth weeks. I'm sure SubSonic is good, but without a trusted guide to teach you, it will be a long time before those efficient benefits are derived.</p>
<p>Good luck on your choices. They will be like a crown or an albatross. </p>
http://stackoverflow.com/questions/249550/what-orm-frameworks-for-net-do-you-like-best/299006#2990064Answer by jbandi for What ORM frameworks for .NET Do You Like Best?jbandi2008-11-18T15:09:29Z2008-11-18T15:09:29Z<p>Since nobody mentioned it yet, I just want to throw in <a href="http://www.genom-e.com/" rel="nofollow">Genome</a>.</p>
<p>I have worked on a "big" successful project (multi-million, several years, >10 developers) for which we chose <a href="http://www.genom-e.com/" rel="nofollow">Genome</a> as persistence solution.</p>
<p>Of course this has been some years ago, when ORM in the .NET-space was a relative new thing.</p>
<p>I was responsible for the data-access of the project, and <a href="http://www.genom-e.com/" rel="nofollow">Genome</a> left a very neat impression.
Today I am working a lot with Hibernate in the Java-space, and from a developer standpoint <a href="http://www.genom-e.com/" rel="nofollow">Genome</a> seemed way more intuitive (even though it has a different architectural philosophy and therefore cant be compared directly).</p>
<p><a href="http://www.genom-e.com/" rel="nofollow">Genome</a> is a commercial product.
<a href="http://www.genom-e.com/" rel="nofollow">Genome</a> has evolved a lot. Today it claims to be fully LINQ-compliant.
If I would be in a position of evaluating a ORM-solution for .NET I would definitely look at <a href="http://www.genom-e.com/" rel="nofollow">Genome</a> again.</p>
<p>Another commercial product, not mentioned yet is <a href="http://www.telerik.com/products/orm.aspx" rel="nofollow">Telerik Open Access</a> (formerly Vanatec Open Access).</p>
http://stackoverflow.com/questions/249550/what-orm-frameworks-for-net-do-you-like-best/870113#8701130Answer by Amr ElGarhy for What ORM frameworks for .NET Do You Like Best?Amr ElGarhy2009-05-15T18:11:55Z2009-06-04T23:31:42Z<p>I have a good experience with <a href="http://www.llblgen.com/defaultgeneric.aspx" rel="nofollow">LLBL</a>, its easy to configure and very easy to code with.</p>
<p>Also you can find <a href="http://amrelgarhy.com/blog/orm-tools-quot-net-quot/" rel="nofollow">list of most known .net ORM tools</a></p>
http://stackoverflow.com/questions/249550/what-orm-frameworks-for-net-do-you-like-best/1336141#13361412Answer by TigerShark for What ORM frameworks for .NET Do You Like Best?TigerShark2009-08-26T16:53:41Z2009-08-26T16:53:41Z<p>I've been using NHibernate (and Active Record) for some time, and I must admit it has it's flaws. It seems like the architecture is quite old making new features like LINQ support quite hard to implement. However, the team behind is very fast to answer any questions and the community is very supportive.</p>
<p>Recently I have been working with LINQ-to-SQL and it too has it's flaws. Of course the two can't really be compared, but for what it's being used for, I can see that LINQ-to-SQL resembles Active Record quite a lot (perhaps because of the fact that the key developer behind Active Record actually developed LINQ-to-SQL).</p>
<p>What I don't like about LINQ-to-SQL is that it's so hard coupled and "almost" impossible to test/mock. Furthermore the part of not having complete control over the domain model also makes me a bit uncomfortable. At the moment I'm doing a lot of mapping between the actual domain model and the LINQ-to-SQL model. At this point NHibernate really shines. Having very little restriction put on the actual domain model makes it a very powerful tool, but apparently this "restriction" makes a lot of people upset blaming the tool for not being completely PI - but neither is Entity Framework, LINQ-to-SQL, iBatis, OpenAccess or any other ORM for that matter.</p>
<p>I have a lot of ORM's to try out, but so far NHibernate have never failed me (and if it did, I'd know that any other ORM would too).</p>
http://stackoverflow.com/questions/249550/what-orm-frameworks-for-net-do-you-like-best/1336216#13362160Answer by Przemaas for What ORM frameworks for .NET Do You Like Best?Przemaas2009-08-26T17:05:32Z2009-08-26T17:05:32Z<p>Here are opinions on DevExpress XPO: <a href="http://stackoverflow.com/questions/31559/any-thoughts-on-devexpress-xpo-orm-package">http://stackoverflow.com/questions/31559/any-thoughts-on-devexpress-xpo-orm-package</a>
I personally would choose NHibernate.</p>
http://stackoverflow.com/questions/249550/what-orm-frameworks-for-net-do-you-like-best/1371003#13710031Answer by Mike for What ORM frameworks for .NET Do You Like Best?Mike 2009-09-03T01:20:59Z2009-09-03T01:20:59Z<p>EntitySpaces
<a href="http://www.entityspaces.net" rel="nofollow">http://www.entityspaces.net</a></p>
http://stackoverflow.com/questions/249550/what-orm-frameworks-for-net-do-you-like-best/1421914#14219142Answer by Vnuk for What ORM frameworks for .NET Do You Like Best?Vnuk2009-09-14T14:27:02Z2009-09-14T14:27:02Z<p>I'm suprised that no one mentioned <strong>the best</strong> ORM out there:</p>
<p>Your own!</p>
<p>The best thing about Your own! ORM is that you can implement something interesting that you see in other ORM tools. I do this approx once a year. And if something bothers you, you can either ignore it or change it. The choice is yours and only yours. </p>