如何将谓词构建器与 linq2sql 和 OR 运算符一起使用

发布于 2024-08-29 11:13:50 字数 862 浏览 9 评论 0原文

我有两个表(TABLE1、TABLE2 - 我知道是唯一的),它们分别具有一对多关系,并且两个表的 ID 列之间都有外键。

使用 linq2sql 我尝试选择所有 TABLE1 条目,以便它们相应的 TABLE2 值在我传递的列表中至少包含 1 项。

这是我在LINQPad(很棒的程序)中使用的一些示例代码来测试它,但是收到错误NotSupportedException:不支持的重载用于查询运算符“Any”。

long[] items = { 3, 5, 8 };
var predicate = PredicateBuilder.False<TABLE2>();

foreach (long i in items)
{
    long t = i;
    predicate = predicate.Or(att => att.ID == t);
}

//TABLE2.Where(predicate).Dump(); //works like a charm

IQueryable query = 
    from t1 in TABLE1
    where t1.TABLE2.AsQueryable().Any(predicate) //problem with this line
    select a;

query.Dump();

更新

在 LinqPad 中使用 LinqKit 时,添加对 LinqKit.dll 的引用,取消选中“包括 PredicateBuilder”,然后在“附加命名空间导入”选项卡下添加 LinqKit。

I have two tables (TABLE1, TABLE2 - unique i know) that has a 1-to-many relationship respectively and a foreign key between ID columns of both tables.

Using linq2sql I am trying to select all TABLE1 entries such that their corresponding TABLE2 values contains at least 1 item in the list I pass it.

Here's some sample code I was using in LINQPad (awesome program) to test it out however am getting the error NotSupportedException: Unsupported overload used for query operator 'Any'.

long[] items = { 3, 5, 8 };
var predicate = PredicateBuilder.False<TABLE2>();

foreach (long i in items)
{
    long t = i;
    predicate = predicate.Or(att => att.ID == t);
}

//TABLE2.Where(predicate).Dump(); //works like a charm

IQueryable query = 
    from t1 in TABLE1
    where t1.TABLE2.AsQueryable().Any(predicate) //problem with this line
    select a;

query.Dump();

UPDATE

When using LinqKit in LinqPad add the reference to LinqKit.dll, uncheck Include PredicateBuilder and then also add LinqKit under Additional Namespace Imports tab.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

眉目亦如画i 2024-09-05 11:13:50

解决方法是

  1. TABLE1 上调用 AsExpandable()
    对象
  2. 对表达式调用 Compile()
    变量,当在 EntitySet 上使用时。

因此,您的最终查询是

IQueryable query = 
    from t1 in TABLE1.AsExpandable()
    where t1.TABLE2.Any(predicate.Compile()) //the problem should disappear
    select a;

更多信息此处

The workaround is

  1. Call AsExpandable() on the TABLE1
    object
  2. Call Compile() on the expression
    variable, when used on an EntitySet.

So your final query is

IQueryable query = 
    from t1 in TABLE1.AsExpandable()
    where t1.TABLE2.Any(predicate.Compile()) //the problem should disappear
    select a;

More information here.

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