且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

.NET Compact Framework(Windows Mobile 6.1,SQLServerCE)是否有免费的ORM?

更新时间:2023-02-11 18:58:48

我目前正在寻找在Windows CE上使用的免费.net ORM.到目前为止,我已经找到了以下商业选项:

I am currently looking for a free .net ORM for use on Windows CE. So far I have found these commerical options:

  • DevXpress XPO
  • LLBLGenPro
  • EntitySpaces

NHibernate 不是一个选择,因为它使用了Compact Framework中不可用的功能(例如,反射).相关功能).

NHibernate sadly is not an option because it uses features that are not available in the Compact Framework (e.g. reflection related functionality).

如果不是绝对需要使用SQL数据库作为基础数据存储,则 Karvonite 是值得考虑.它是一个与以下对象兼容的免费对象持久性框架( Ms-PL ) .net Compact Framework.您是否需要使用SQL Server Compact,还是真的只是想要一种简单的方法来保留您的域?

If using a SQL database as your underlying data store is not absolutely necessary then Karvonite is worth consideration. It is a free (Ms-PL) object persistence framework compatable with the .net Compact Framework. Do you need to use SQL Server Compact or are you really just wanting an easy way to persist your domain?

如果我有更多选择,我会向你更新.

I will update you if I find more options.