如何将 Linq 与 Castle ActiveRecord 结合使用
我正在使用 Castle ActiveRecord,注意到下载中包含文件 Castle.ActiveRecord.Linq.dll
。我没有找到任何将 Linq 与 ActiveRecord 结合使用的文档,只有 一些 旧 博客文章。
使用模式是什么? Castle.ActiveRecord.Linq
准备好用于生产了吗?
I am playing around with Castle ActiveRecord and noticed that the download included the file, Castle.ActiveRecord.Linq.dll
. I haven't found any documentation for using Linq with ActiveRecord, only some old blog posts.
What is the usage pattern? Is Castle.ActiveRecord.Linq
ready for production use?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,Castle.ActiveRecord.Linq 已做好生产准备。它包含在最新的 ActiveRecord 版本中。实际的 Linq 提供程序是在 NHibernate.Linq.dll 中实现的,ActiveRecord Linq dll 是一个薄传递层。基本上有两种使用方法:
让您的实体继承自
ActiveRecordLinqBase
,然后进行查询:使用
ActiveRecordLinq.AsQueryable
,例如:< /p>查看测试 一些示例代码。
更新:从 ActiveRecord 3.0 beta 开始,Linq 集成到 Castle.ActiveRecord.dll 中,而 NHibernate.Linq.dll 不再存在(从 NHibernate 3 开始集成到 NHibernate.dll 中)
Yes, Castle.ActiveRecord.Linq is production ready. It's included in the latest ActiveRecord release. The actual Linq provider is implemented in NHibernate.Linq.dll, the ActiveRecord Linq dll is a thin pass-through layer. There are basically two ways to use it:
Make your entities inherit from
ActiveRecordLinqBase<T>
, then to query:Use
ActiveRecordLinq.AsQueryable<T>
, e.g.:Look at the tests for some sample code.
UPDATE: as of ActiveRecord 3.0 beta, Linq is integrated into Castle.ActiveRecord.dll, and NHibernate.Linq.dll is no more (integrated into NHibernate.dll as of NHibernate 3)