How to use Select method of DataTable

Yes, this works. For a list of all possible expressions see http://msdn.microsoft.com/en-us/library/system.data.datacolumn.expression.aspx Here also is a sample program demonstrating this works. using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data; namespace ConsoleApplication2 { class Program { static void Main(string[] args) { DataTable table = new DataTable(); // Create the first column. DataColumn textColumn = … Read more