Home
Manage Your Code
Snippet: How to select data from a DataTabe in a DataSet with LINQ (C#)
Title: How to select data from a DataTabe in a DataSet with LINQ Language: C#
Description: Select and sort values from a TataTable and returns a OrderedEnumerableRowCollection. Views: 157
Author: - - Date Added: 10/29/2008
Copy Code  
1var result = from row in titelDataSet1.Table1
2             where row.Titel != ""
3             orderby row.Titel ascending
4             select row;