Select Rows from a DataSet using LINQ, where the list of RowsID#39;s are in a Listlt;Tgt;(使用 LINQ 从 DataSet 中选择 Rows,其中 RowsID 的列表位于 Listlt;Tgt;)
问题描述
首先我必须说,我是使用 LINQ 的新手.实际上我以前从未使用过,但我有一个任务需要过滤 DataTable,使用来自列表的值.所以我想知道在 LINQ 中是否可以使用列表中的值作为过滤器值来查询数据表.有人可以给我一些提示
First I have to say, that I am a newby using LINQ. Actually I never used before, but I am having a task where I need to filter a DataTable, using values that will come from a List. So I will like to know if it's possible in LINQ to query on a Datatable using values in the List as Filter values. Some one can give me some hint's
谢谢.
推荐答案
执行此操作的最佳方法取决于您打算如何处理过滤后的结果.您是否需要将结果作为 DataTable 返回以进行进一步操作,或者您是否需要对结果进行数据绑定?
The best way to do this depends on what you plan to do with the filtered results. Do you need the results back as DataTable for further operations, or are you databinding to the results?
以下面的示例为例,它返回匹配 DataRows 的(可绑定的)枚举器
Take the example below, which returns a (bindable) enumerator of matching DataRows
//create sample table with sample rows
DataTable table = new DataTable();
table.Columns.Add("id", typeof(int));
for (int i = 1; i < 11; i++)
{
DataRow row = table.NewRow();
row[0] = i;
table.Rows.Add(row);
}
//filter the table by id (in a list)
List<int> rowIds = new List<int> { 1, 3, 6 };
IEnumerable<DataRow> matchingRows = from DataRow row in table.Rows
where rowIds.Contains((int)row[0])
select row;
如果您需要 DataTable,您可以将行导入另一个表:
If you need a DataTable you could import the rows into another table:
DataTable filteredTable = table.Clone();
foreach (DataRow filteredRow in matchingRows)
{
filteredTable.ImportRow(filteredRow);
}
这篇关于使用 LINQ 从 DataSet 中选择 Rows,其中 RowsID 的列表位于 List<T>的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 LINQ 从 DataSet 中选择 Rows,其中 RowsID 的列表位于 List<T>
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- 输入按键事件处理程序 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01