I haven't worked on a .NET project for a while (more than a year). Before I've never used an ORM for a .NET application. What are some of your takes on this? Does using one make sense? Which ones should I consider trying?
|
closed as not constructive by Robert Harvey♦ Jul 2 '12 at 19:52
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
|
|||||||||||||||||||||
|
|
Not all ORMS are equal. You might not want a full-on ORM - maybe you really just want a DAL generator to avoid the CRUD nastiness. Maybe Linq to SQL would work for you if you just want to abstract away the SQL but have no problem putting the data access logic in your code. Living with an ORM is not a zero-friction experience. You need to know what side-effects your choice will have on your code. It may constrict you in ways you don't like (say you have to inhert from a base class and can't use POCOs). It may effectively enforce a tiered architecture when maybe you don't really want one (although I can't see why you wouldn't ). If you want a full-on, middleware-style, very complete ORM that is extensible and can be used in many different types of setting and scale and can map well to legacy databases, then go with NHibernate. Zero question. It's IMNSHO the most developed ORM for .NET today, with all due respect to some of the commercial offerings (although LLBLGen Pro is justifiably lauded - but it's a DAL generator rather than a middleware solution, and that's not my own preference). And if your mapping needs are simple and you don't need detailed granular control over the object lifecycle, definitely consider ActiveRecord on top of NHibernate. But be aware that it has a very different idiom to NHibernate in terms of session management, despite being built on top of it, and don't confuse the two. That, as I have found out to my cost, can really screw you up :-) |
|||
|
|
|
Today: LINQ to SQL. It is easy to use, saves a ton of time during development, and generally behaves nice against the database by generating (mostly) very efficient queries. The current version of ADO.NET Entity Framework (EF) is not production ready in my opinion; too many issues both in the designer and in the run-time (e.g. initialization times, poor SQL generated by L2E, etc). The next version of EF will hopefully change that. Update: See this related thread: http://forums.microsoft.com/msdn/ShowPost.aspx?PostID=4107623&SiteID=1&pageid=0 |
|||||||||||||
|
|
Since nobody mentioned it yet, I just want to throw in Genome. I have worked on a "big" successful project (multi-million, several years, >10 developers) for which we chose Genome as persistence solution. Of course this has been some years ago, when ORM in the .NET-space was a relative new thing. I was responsible for the data-access of the project, and Genome left a very neat impression. Today I am working a lot with Hibernate in the Java-space, and from a developer standpoint Genome seemed way more intuitive (even though it has a different architectural philosophy and therefore cant be compared directly). Genome is a commercial product. Genome 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 Genome again. Another commercial product, not mentioned yet is Telerik Open Access (formerly Vanatec Open Access). |
|||
|
|
|
I have used SubSonic with great success on both small and large applications. Open Source and free. I would recommend to anyone look at subsonic to watch the screencast that is linked at the top of this page. It really shows how easy it is to setup and get started: http://subsonicproject.com/setup/gettingstarted/ |
|||||||||||
|
|
For really lightweight solution: Massive or PetaPoco. Both are single .cs files with no dependencies except what's in the GAC. (full disclosure, PetaPoco is something I wrote) |
||||
|
|
|
Castle ActiveRecord is the latest love of my life, built on top of NHibernate, and takes most of the grunt work away so I can focus on the business layer. My criteria for selecting something like this is a solid community, active development, and MySQL support. So far, ActiveRecord has been working out nicely. |
|||||
|
|
Try DataObjects .NET 4.0. It's fast, easy to use and powerful framework. Uses "Code-First" approach and mapping through attributes. Rather comprehensive support of LINQ.
It has a lot of samples and online documentation. Currently it has providers for MS SqlServer 2005+, PostgreSql 8.1+. Provider for Oracle will be completed in August. |
|||||
|
|
I would go for either LINQ or NHibernate. LINQ has a short learning curve. There are some excellent screencasts out there, see e.g. http://www.asp.net/learn/linq-videos/. I've been using NHibernate more and more recently. Excellent learning screencasts are available at http://www.summerofnhibernate.com/ - hats off to Steve Bohlen :-) |
||||
|
|
|
One of the things i look at is design approach, top down or bottom up. This could potentially make a big difference. There are many ORM's and i am sure someone else with more experience on some others can chime in. I also look at how fast i need to pump things out. I usually go for the fast on most things so i go with LLBLGen or Linq to SQL. LLBLGen pretty much requires a bottom up approach, but its one of my favorites, especially since Linq support was added in. It costs money though, its not a free framework. |
|||||||||
|
|
I'd second the vote for LLBL Gen Pro. We've used it where I work for over 3 years now, against both Oracle and SQL Server and have been very impressed. Not only is it flexible and feature rich, but it generates very streamlined queries. Additionally if you have any questions their developer community is very responsive on their message forum. I wouldn't want to develop DB apps without it. |
|||
|
|
|
It depends on your style of development. If you value designer support you'll be happiest with Linq to SQL or Entity Framework If you value domain driven design and want to decouple your domain objects from your DAL then Entity Framework isn't for you. Linq to SQL might be good enough. Or you could look ad an OSS solution. I have worked a bit with nHibernate and Ibatis.Net. Ibatis is a more light solution and works better if you want to map to an existing database. nHibernate is more extensive and has some more community support. I've heard Castle ActiveRecord is good. I'm not too happy with the active record pattern so I havn't tried it. But I like the nHibernate intergration. If activerecord doesn't work for you you can migrate to plain nHibernate. |
|||
|
|
|
I've used LLBLGen Pro quite extensively, and really love it. I'd recommend it as a candidate to trial in your selection process. It's capable of generating your entire entity framework and all statically-typed relations between entities directly from your database schema, and the query framework is flexible and powerful. Since everything is generated as types there's great integration with intellisense, so writing code is really easy. It also includes data adapters so you can do all the drag-and-drop programming you want to connect your database to standard gridviews, detailsviews, etc. |
|||
|
|
|
Another consideration is the database target - if you are only going to use SQL Server then I would be tempted to future proof yourself and evaluate Entity Framework (EF). (I know there are other DB providers available for EF but not all are free and some DBs still are not included) Otherwise I've had great results with NHiberate which is incredibly flexible and has a great support ecosystem (published books, forums etc). |
||||
|
|
|
As far as I can see, LINQ to SQL IS NOT an ORM. It is more like an Entity/Relations Mapper. That means what you actually get from the database is dead structs with no behavior. Furthermore LINQ to SQL is absolutely terrible to test against. So, if you are doing TDD and wants something that you actually can stub/mock away, I would recommend NHibernate or rolling your own. |
|||||||||||||||
|
|
It's not evident in your question, but if you are developing a .Net Web application and want to use ASP.NET MVC with an ORM, take a look at S#arp Architecture It demonstrates an architecture using NHibernate and a number of complementary tools (Castle Microkernel/Windsor (for inversion of control), FluentNHibernate (to avoid XML situps)) with a large focus on Test Driven Development. |
||||
|
|
|
This question is almost a year old and some of the answers are becoming bit dated. Nobody has recommended Entity Framework, we have used EF on two major projects and it has worked well for us. There is an initial learning curve to EF, but in our experiance no more than for nHibernate. http://msdn.microsoft.com/en-us/library/aa697427(VS.80).aspx If you think that EF is a bad idea, please answer another question that I have asked about what problems you have had with EF. |
||||
|
|
|
I have lots of experience with Gentle.NET, however, Morten has dropped support due to lack of time. I still use it despite its age and for things not too big, it is better (imo) than NHibernate. Less complicated and you don't need to maintain external files. SInce it has been abandoned, I'd recommend you look somewhere else. note: I am writing this in case you find Gentle.NET somewhere and consider using it… |
|||
|
|
|
LINQ to SQL is nice, LINQ to entities is looking promising but not there yet. They're good for fast small projects, for larger ones I'd personally recommend NHibernate, Subsonic or NPersist I tried out all open source ones I could find in this article, and those were the best of the bunch. They're all decent quality, it boils down to which has the biggest community and resources if you're having to actually do it day to day and use it commercially or on a large scale. |
|||
|
|
|
NHibernate is your best choice if you want an actively developed open source solution. I built our systems using Paul Wilson's O/R mapper which sadly is no longer actively developed or supported. If you're brand new to O/R mapping it's still a great way to start since you can get it running in an hour or less. We'll be moving to NHibernate in 2009; one of the benefits of O/R mapping is that this move should be somewhat painless. I haven't played with Linq2Sql much but it isn't really an O/R mapper. I am also concerned that it will be yet another Microsoft project that meets 80% of your needs but covering the last 20% is hell. |
|||
|
|
|
ActiveRecord which builds on top of nHibernate. Though you should probably NOT use nHibernate alone since there is just too much redundancy with the .hbm files and such... ActiveRecord completely abstracts away this for you... |
|||
|
|
|
For small projects you can use SOODA but I know enterprise applications based on that ORM :) It's very simple to use/configure, etc. But if you getting seriously then nothing else than NHibernate. |
|||
|
|
|
NHibernate. Nothing else. Forget LINQ to SQL and ADO.NET Entity Framework. They are too intrusive. With NHibernate you can simply use POCO's from your business domain! NHibernate just rocks! |
||||
|
|
I recommend to you Microsoft products - LINQ 2 SQL or Entity Framework. They provide an enhanced functionality and you can easy learn them. You can use different database servers with the help of third-party providers (http://www.devart.com/dotconnect/, http://web.datadirect.com/index.html, etc.). |
||||
|
|
|
Try the new PLINQO from Codesmith Tools. I never used it yet but only read this - http://www.codesmithtools.com/product/frameworks/plinqo/why |
|||
|
|
|
One of the early goals (think back, circa early 2000's) for creating a "DataLayer", was to encapsulate methods that needed to know about the specific RDBMS. If you created a well designed DataLayer, you could potentially swap out your Oracle backend database for Sql Server (or vice versa) and only impact a fraction of the code. (The extreme other end (and a bad design) would be to have SqlDataReaders in your "button_click" events. :<) After getting a "bad feeling" about using NHibernate or Entity Framework (EF) and having these references in the "upper levels", after prototyping a few things and hitting some obstacles when trying to pass NHibernate or EF entities "across the wire" with WCF, I happened upon the below blog. And it confirmed the same issues I have hitting in my prototype code. Whichever one you chose, you might consider a "ORM-Entity to DTO" translation layer to avoid putting ORM specific references in your "higher" layers (Business Layer, Presentation Layer). Please see: http://davybrion.com/blog/2010/05/why-you-shouldnt-expose-your-entities-through-your-services/ The "adapter" between ORM-Specific-Entities would look something like this (Code samples a little lower). (Using "Employee" as a generic example. As the article points out, some will argue this is just an extra unneeded "bloat" layer. Ok...that's the coding world, several good ways to something....and different pros/cons to each. This is just an opinion. But the article above at least let me know that I wasn't uber-crazy and not totally alone in what I was experiencing. But since having put in the tad extra work with this "adapter" layer (between ORM entities and DTO objects).................the world seems at peace again. Here is the other advantage. (Remember what I said about the early circa 2000's "DataLayer" goal). Using this model, you could actually swap out NHibernate for EF (or vice versa) down the road. And only impact a fraction of the code. If you pass EF (or NHibernate) entities across the wire.........you will not be able to do this. Heck, if you use this model, you can start with ADO.NET, transforms IDataReaders into DTO objects...........and then swap out to an ORM at a later time. The way I now think of ORM frameworks is.... "Sql Replacers". You're trying to avoid hand typing a bunch of SQL.
VERY pseudo code. As far as your original question. With the above mode, the decision becomes a tad less important. (Still important, but you haven't painted yourself into a corner forever). I like NHiberate using Fluent to "code up" the (eventual) DDL. Quick Example: ORM Entity (NHibernate Entity)
Fluent Mapping
DDL (Sql Server 2005/2008 Flavor)
Please note the above is just barely tad bit more intense than a "Hello World" sample for Fluent NHibernate. When you have objects that have child objects that have more child objects....when the domain-object-model is much more real world, the advice from the article (referenced earlier) starts kicking in. You will NOT see the need for the extra "adapter" layer (that I mention) from a Hello-World example. |
||||
|
|
|
I recommend the new EntityOR: EntityORM is a fully typed Object Relation Mapping library for .NET 2.0. The main strength of EntityORM is the ease of use. Most ORM libraries still require a lot of type casting and other plumbing to be written, EntityORM is designed to relieve the programmer from these tedious and error-prone tasks, making it very intuitive to use. The main features are:
|
||||
|
