I need to generate an \'IEnumerable from a DataTable that I receive as an input from another system. The following code worked in ASP.NET 4.6.1.
public st
You can use myDataTable.Select(); it returns an array of all DataRow
myDataTable.Select();