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. Any ideas how to get something like this working? I'm amazed that LINQ queries are not allowed on DataTables!

link|improve this question

75% accept rate
2  
You can find more LINQ/Lambda example from webmingle.blogspot.com/2010_09_01_archive.html – Dharmesh Barochia Feb 17 '11 at 19:18
4  
You should look on linqtutorial.net – Delashmate Sep 22 '11 at 21:56
feedback

10 Answers

up vote 253 down vote accepted

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;

And as Keith says, you'll need to add a reference to System.Data.DataSetExtensions

AsEnumerable() returns IEnumerable<DataRow>. If you need to convert IEnumerable<DataRow> to a DataTable, use the CopyToDataTable() extension.

link|improve this answer
You have a typo in there. Should be myRow.Field("RowNo") – Arron Mar 25 '09 at 20:02
1  
VB Version: Dim results = From myRow In myDataTable.AsEnumerable _ Where myRow.Field("RowNo") = 1 _ Select myRow – Jeff Jul 29 '09 at 20:46
2  
The .Field() method should take a type like so: .Field<int>("RowNo"), shouldn't it? – Cros Apr 28 '10 at 13:57
Thanks, you're absolutely right. I've fixed the code. – Collin K May 3 '10 at 17:53
2  
I already had a reference to the dll mentioned, but was missing using System.Data; – Luke Duddridge May 31 '11 at 10:37
show 4 more comments
feedback

You want what's known as LINQ to DataSet. That link will take you to the first in a series of posts introducing it on the ADO.NET team blog.

link|improve this answer
feedback

As @ch00k said:

using System.Data; //needed for the extension methods to work

...

var results = 
    from myRow in myDataTable.Rows 
    where myRow.Field<int>("RowNo") == 1 
    select myRow; //select the thing you want, not the collection

You also need to add a project reference to System.Data.DataSetExtensions

link|improve this answer
feedback
var query = from p in dt.AsEnumerable()
                    where p.Field<string>("code") == this.txtCat.Text
                    select new
                    {
                        name = p.Field<string>("name"),
                        age= p.Field<int>("age")                         
                    };
link|improve this answer
feedback
var results = from DataRow myRow in myDataTable.Rows
    where (int)myRow["RowNo"] == 1
    select myRow
link|improve this answer
feedback

It's not that they were deliberately not allowed on DataTables, it's just that DataTables pre-date the IQueryable and generic IEnumerable constructs on which Linq queries can be performed.

Both interfaces require some sort type-safety validation. DataTables are not strongly typed. This is the same reason why people can't query against an ArrayList, for example.

For Linq to work you need to map your results against type-safe objects and query against that instead.

link|improve this answer
feedback

http://dotnetarchitect.wordpress.com/2009/03/18/using-linq-to-manipulate-data-in-datasetdatatable/

var results = from myRow in tblCurrentStock.AsEnumerable()
              where myRow.Field<string>"item_name").ToUpper().StartsWith(tbSearchItem.Text.ToUpper())
              select myRow;
DataView view = results.AsDataView();
link|improve this answer
feedback

You can use LINQ to objects on the Rows collection, like so:

var results = from myRow in myDataTable.Rows where myRow.Field("RowNo") == 1 select myRow;
link|improve this answer
feedback

Try this

var row = (from result in dt.AsEnumerable().OrderBy( result => Guid.NewGuid()) select result).Take(3) ; 
link|improve this answer
feedback
//Create DataTable 
DataTable dt= New DataTable();
dt.Columns.AddRange(New DataColumn[]
{
   new DataColumn("ID",typeOf(System.Int32)),
   new DataColumn("Name",typeOf(System.String))

});

//Fill with data

dt.Rows.Add(New Object[]{1,"Test1"});
dt.Rows.Add(New Object[]{2,"Test2"});

//Now  Query DataTable with linq
//To work with linq it should required our source implement IEnumerable interface.
//But DataTable not Implement IEnumerable interface
//So we call DataTable Extension method  i.e AsEnumerable() this will return EnumerableRowCollection<DataRow>


// Now Query DataTable to find Row whoes ID=1

DataRow drow = dt.AsEnumerable().Where(p=>P.Field<Int32>(0)==2).FirstOrDefault();
 // 
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.