Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I use NHibernate on Windows Phone 7?

Can I use NHibernate on Windows Phone 7?

like image 764
Schattenprinz Avatar asked Oct 28 '10 12:10

Schattenprinz


1 Answers

No, NHibernate does not support Windows Phone (or any Compact-Framework platform for that matter). Entity Framework is also unsupported.

As far as ORMs go, the only one I actually know about (there may well be others that I don't know about) is the OpenNETCF ORM, which is not fully implemented for WinPhone. What that means is that there is a WinPhone project for the ORM (usign SQLite as a store) and that project's skeleton has been built (it will create the tables) but to get it to actually do CRUD operations, you would have to do some work. I know someone who did it a while back as a test and it took him under a day.

like image 150
ctacke Avatar answered Nov 04 '22 06:11

ctacke