LINQ query on a DataTable(对 DataTable 的 LINQ 查询)
问题描述
我正在尝试对 DataTable 对象执行 LINQ 查询,但奇怪的是,我发现对 DataTables 执行此类查询并不简单.例如:
I'm trying to perform a LINQ query on a DataTable object and bizarrely I am finding that performing such queries on DataTables is not straightforward. For example:
var results = from myRow in myDataTable
where results.Field("RowNo") == 1
select results;
这是不允许的.我怎样才能让这样的事情发挥作用?
This is not allowed. How do I get something like this working?
我很惊讶在 DataTables 上不允许使用 LINQ 查询!
I'm amazed that LINQ queries are not allowed on DataTables!
推荐答案
你不能查询 DataTable
的 Rows 集合,因为 DataRowCollection
没有实现 IEnumerable<T>
.您需要为 DataTable
使用 AsEnumerable()
扩展.像这样:
You can't query against the DataTable
's Rows collection, since DataRowCollection
doesn't implement IEnumerable<T>
. You need to use the AsEnumerable()
extension for DataTable
. Like so:
var results = from myRow in myDataTable.AsEnumerable()
where myRow.Field<int>("RowNo") == 1
select myRow;
正如 @Keith 所说,您需要添加对 System.Data.DataSetExtensions
And as @Keith says, you'll need to add a reference to System.Data.DataSetExtensions
AsEnumerable()
返回 IEnumerable
.如果您需要将 IEnumerable<DataRow>
转换为 DataTable
,请使用 CopyToDataTable()
扩展.
AsEnumerable()
returns IEnumerable<DataRow>
. If you need to convert IEnumerable<DataRow>
to a DataTable
, use the CopyToDataTable()
extension.
下面是使用 Lambda 表达式的查询,
Below is query with Lambda Expression,
var result = myDataTable
.AsEnumerable()
.Where(myRow => myRow.Field<int>("RowNo") == 1);
这篇关于对 DataTable 的 LINQ 查询的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:对 DataTable 的 LINQ 查询
- C#MongoDB使用Builders查找派生对象 2022-09-04
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- 输入按键事件处理程序 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01