作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下 linq 语句,我想在其中使用相当于 SQL IN 运算符的 linq。我有一个字符串变量,其值类似于 {1,2}。
string items = "1,2";
var objList = from p in db.firsttable
join q in db.secondtable on q.id equals p.someid
where items.Contains(p.id)
select new
{
p.id,
p.column1,
p.column2,
q.column3
}
但是我无法从上面的 linq 语句中得到输出。请帮帮我。
最佳答案
如果 p.id
是字符串,您应该拆分 items
值:
string[] items = "1,2".Split(',');
var objList = from p in db.firsttable
join q in db.secondtable on q.id equals p.someid
where items.Contains(p.id)
select new
{
p.id,
p.column1,
p.column2,
q.column3
}
如果 p.id
是 int
你应该拆分 items
值,然后将它们解析为 int
:
int[] items = "1,2".Split(',').Select(x=> int.Parse(x)).ToArray();
关于sql-server - 使用相当于 sql IN 运算符的 linq,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32221138/
我是一名优秀的程序员,十分优秀!