I'm starting up a rather large-scale open source server project written in C# which targets both the MS.NET and Mono platforms. However, I realized that Mono only has limited support for LINQ to SQL, and no support for the Entity Framework at all.

Two ORMs I have considered are NHibernate and SubSonic. However, I have no idea how either will operate on Mono 2.8 (which is what I'm targeting).

So, can anyone recommend an ORM that will run on Mono 2.8, or happen to have used some of the aforementioned ORMs successfully under Mono?

Thanks in advance.

link|improve this question

feedback

3 Answers

up vote 8 down vote accepted

Mono supports:

  • NHibernate - Free, open source, proven and tested. Easy to configure. My personal favorite.
  • db4o - Free if you open-source your own project. You have to license it for commercial apps. Much less well-known than NHibernate.
  • siaqodb - Available for Mono 2.4 and up. You have to pay $185 for a license, but the redistributable engine is royalty-free.

In choosing from this list, I'd suggest NHibernate. Lots of help is available out there for it and it works fabulously.

link|improve this answer
I guess I'll give NHibernate a shot. – Zor Oct 27 '10 at 9:15
feedback

You sure NHibernate doesn't work on Mono? You should be able to use the same Assemblies at Mono. Another option is to download it's source and compiling it. Check this page https://forum.hibernate.org/viewtopic.php?f=25&t=951909&start=0

link|improve this answer
I'll test out NHibernate on Mono and see how it goes. – Zor Oct 27 '10 at 9:15
NHibernate works for me on mono :) – IanNorton Oct 30 '11 at 8:51
feedback

Another very interesting one I have come across recently is Vici CoolStorage. It even supports Mono (MonoTouch specifically) on the iPhone.

link|improve this answer
I need to use the monotouch version if I develop on Mono right? Sadly the project doesn't exist anymore. – asrijaal Jun 3 '11 at 22:33
@asrijaal - I am not sure what does not exist. CoolStorage still exists and in fact supports Windows Phone 7 as well. MonoTouch certainly exists as well and is evolving nicely. Perhaps there was some confusion when MonoTouch transferred from Novell to Xamarin. – Justin Sep 19 '11 at 21:27
feedback

Your Answer

 
or
required, but never shown

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