How to create select columns list dynamically in DLinq ?
I want to create something like
Console.WriteLi ne("Enter list of columns to return, separated by commas:");
string list = Console.ReadLin e();
var q = from c in Db.Customers
where c.Location=="Lo ndon"
select list;
Andrus.
I want to create something like
Console.WriteLi ne("Enter list of columns to return, separated by commas:");
string list = Console.ReadLin e();
var q = from c in Db.Customers
where c.Location=="Lo ndon"
select list;
Andrus.