views:

60

answers:

1

Can I use NHibernate on Windows Phone 7?

+1  A: 

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.

ctacke