gpt4 book ai didi

c# - 使用where条件查询数据表

转载 作者:IT王子 更新时间:2023-10-29 04:12:08 24 4
gpt4 key购买 nike

我有一个包含两列的数据表,

Column 1 = "EmpID"
Column 2 = "EmpName"

我想查询数据表,针对 EmpID 列和Empname.

例如,我想获取其中的值

(EmpName != 'abc' or EmpName != 'xyz') and (EmpID = 5)

最佳答案

像这样的……

var res = from row in myDTable.AsEnumerable()
where row.Field<int>("EmpID") == 5 &&
(row.Field<string>("EmpName") != "abc" ||
row.Field<string>("EmpName") != "xyz")
select row;

另见 LINQ query on a DataTable

关于c# - 使用where条件查询数据表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9938524/

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