A
Andrus
How to create select columns list dynamically in DLinq ?
I want to create something like
Console.WriteLine("Enter list of columns to return, separated by commas:");
string list = Console.ReadLine();
var q = from c in Db.Customers
where c.Location=="London"
select list;
Andrus.
I want to create something like
Console.WriteLine("Enter list of columns to return, separated by commas:");
string list = Console.ReadLine();
var q = from c in Db.Customers
where c.Location=="London"
select list;
Andrus.