LINQ Where in collection 子句

LINQ Where in collection clause(LINQ Where in collection 子句)
本文介绍了LINQ Where in collection 子句的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我一直在 google 上搜索,但没有找到任何对我有用的东西.

I've been looking on google but not finding anything that does the trick for me.

如您所知,SQL 有一个where x in (1,2,3)"子句,它允许您检查多个值.我正在使用 linq,但似乎找不到与上述语句相同的语法.

as you know SQL has a "where x in (1,2,3)" clause which allows you to check against multiple values. I'm using linq but I can't seem to find a piece of syntax that does the same as the above statement.

我有一个类别 ID(列表)的集合,我想根据这些集合进行检查

I have a collection of category id's (List) against which I would like to check

我发现了一些使用 .contains 方法的东西,但它甚至没有构建.

I found something that uses the .contains method but it doesn't even build.

推荐答案

你必须在你的 id 列表中使用 Contains 方法:

You have to use the Contains method on your id list:

var query = from t in db.Table
            where idList.Contains(t.Id)
            select t;

这篇关于LINQ Where in collection 子句的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Is Unpivot (Not Pivot) functionality available in Linq to SQL? How?(Linq to SQL 中是否提供 Unpivot(非 Pivot)功能?如何?)
How to know if a field is numeric in Linq To SQL(如何在 Linq To SQL 中知道字段是否为数字)
Linq2SQl eager load with multiple DataLoadOptions(具有多个 DataLoadOptions 的 Linq2SQl 急切加载)
Extract sql query from LINQ expressions(从 LINQ 表达式中提取 sql 查询)
Orderby() not ordering numbers correctly c#(Orderby() 没有正确排序数字 c#)
Why do I get quot;error: ... must be a reference typequot; in my C# generic method?(为什么我会收到“错误:...必须是引用类型?在我的 C# 泛型方法中?)