如何将 Linq 与 Castle ActiveRecord 结合使用

发布于 2024-09-03 17:12:36 字数 513 浏览 5 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

稍尽春風 2024-09-10 17:12:36

是的,Castle.ActiveRecord.Linq 已做好生产准备。它包含在最新的 ActiveRecord 版本中。实际的 Linq 提供程序是在 NHibernate.Linq.dll 中实现的,ActiveRecord Linq dll 是一个薄传递层。基本上有两种使用方法:

  1. 让您的实体继承自ActiveRecordLinqBase,然后进行查询:

    var blogs = (from b in Blog.Queryable select b).ToList();
    
  2. 使用ActiveRecordLinq.AsQueryable,例如:< /p>

    var blogs = (from b in ActiveRecordLinq.AsQueryable() select b).ToList();
    

查看测试 一些示例代码。

更新:从 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:

  1. Make your entities inherit from ActiveRecordLinqBase<T>, then to query:

    var blogs = (from b in Blog.Queryable select b).ToList();
    
  2. Use ActiveRecordLinq.AsQueryable<T>, e.g.:

    var blogs = (from b in ActiveRecordLinq.AsQueryable<Blog>() select b).ToList();
    

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)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文