gpt4 book ai didi

sql - Entity Framework : Get all rows from the table for the ids in list

转载 作者:行者123 更新时间:2023-12-04 17:21:54 24 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





"IN" Operator in Linq

(14 个回答)


7年前关闭。




我的情况是我有 ID {2,10,16,24,32,...} 并且想从表中获取与这些 ID 匹配的行。我如何在 Entity Framework 中做到这一点。

在 SQL 中,我可以执行以下操作:

SELECT * FROM table WHERE id IN (2,10,16,24,32)



如何在 Entity Framework 中实现这一点?

最佳答案

您可以将您的 id 放入一个列表中,并在 Where 中使用它来过滤掉表中 id 与列表中的行匹配的行:

var ids = new List<int>() { 2, 10, 16, 24, 32 };
var rows = Table.Where(t => ids.Contains(t.id)).ToList();

关于sql - Entity Framework : Get all rows from the table for the ids in list,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21731461/

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