Is it possible to make the LINQ SELECT more flexible by not working with properties but with the column name? Maybe an example will help..I\'m trying to do the following (pseudo
Maybe this will help you
from x In Entities where ... select new { Value = x["Value"], Date = x["Date"], ID = x["ID"] }