Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Best free ORM tools to use with .NET 2.0/3.5 [closed]

Tags:

.net

orm

I'm interested in using an Object-Relational Mapping package for an upcoming project. This project will begin as an ASP.NET application but will have lots of functionality that will eventually be shared with WinForms applications. Can anyone suggest some good, free ORM packages that work well in both ASP.NET and WinForms situations?

like image 488
Chris Avatar asked Oct 15 '08 20:10

Chris


2 Answers

SubSonic is not as extensive as nHibernate; rather, it is a straight forward Active Record 1 class per table Data Access Layer.

Some of the features are a query tool, ability to execute stored procedures and a scaffolding app in ASP.net. You can be up and running within 30 minutes or less, with a tiny learning curve and minimal configuration in the Config.app file.

like image 125
David Robbins Avatar answered Oct 26 '22 06:10

David Robbins


I always recommend Castle ActiveRecord. It's a layer on top of NHibernate. It works great in both environments you've mentioned.

like image 37
Ryan Duffield Avatar answered Oct 26 '22 07:10

Ryan Duffield