gpt4 book ai didi

linq - 需要一个简单的 linq

转载 作者:行者123 更新时间:2023-12-04 06:27:43 26 4
gpt4 key购买 nike

我有一张 table 叫做产品。我想获取 productID 为 2 OR 6 OR 9 的所有产品
SQL 是:Select * from products where productID=2 OR productID=6 OR ProductID=9 .
如何通过 LINQ 执行此 sql? productIds 在一个数组中

最佳答案

from p in Products
where new int [] { 2,6,9 }.Contains(p.ProductID)
select p;

关于linq - 需要一个简单的 linq,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5840353/

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