gpt4 book ai didi

sql - 使用 linq 检查列表中的所有项目是否出现在另一个列表中

转载 作者:行者123 更新时间:2023-12-04 20:53:42 24 4
gpt4 key购买 nike

我在这里遇到了一个问题。我正在尝试使用 linq 将列表中的项目与具有更多项目的另一个列表进行比较。

例如:

list 1: 10,15,20
list 2: 10,13,14,15,20,30,45,54,67,87

如果 TRUE 中的所有项目都出现在 list 1 中,我应该得到 list 2 。所以上面的例子应该返回 TRUE
就像你看到的那样,我不能使用 sequenceEquals
有任何想法吗?

编辑:

list2 实际上不是一个列表,它是 sql 中的一列,具有以下值: <id>673</id><id>698</id><id>735</id><id>1118</id><id>1120</id><id>25353</id>

在 linq 中,由于 Jon Skeets 的帮助,我做了以下查询:
var query = from e in db
where e.taxonomy_parent_id == 722
select e.taxonomy_item_id;

查询此时是 longs 的 IQueryable
var query2 = from e in db
where query.Contains(e.taxonomy_item_id)
where !lsTaxIDstring.Except(e.taxonomy_ids.Replace("<id>", "")
.Replace("</id>", "")
.Split(',').ToList())
.Any()
select e.taxonomy_item_id;

但现在我收到错误 Local sequence cannot be used in LINQ to SQL implementation of query operators except the Contains() operator

最佳答案

怎么样:

if (!list1.Except(list2).Any())

这是我能想到的最简单的方法。如果需要,您可以显式创建集合等:
HashSet<int> set2 = new HashSet<int>(list2);
if (!list1.Any(x => set2.Contains(x)))

但无论如何,我希望这几乎是 Except 的实现。

关于sql - 使用 linq 检查列表中的所有项目是否出现在另一个列表中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8486707/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com