Using LINQ, I've been trying to use the System.Linq.Dynamic library in order to query a datatable dynamically. The problem is that it's not strongly typed, and the extension method for select is expecting an IEnumerable as the source.
Is there a way to work around this? Example code:
var query = dataSet.Tables[0].AsEnumerable().Select("new(Regional)");