up vote 3 down vote favorite
2
share [g+] share [fb]

I have a huge query that is being made dynamically, but I want the select statement to not output the column names, buut custom values. FOr example, if I am doing a normal Linq query, I can do something like this:

var v = from p in db.items select new { name = p.item_name, price = p.item_price };

which will give me the nice '.name' and '.price' accessors

but if I am using Dyanmic Linq, I can do this:

var v = db.items.Select("new (item_name,item_price)");

works fine, but

var v = db.items.Select("new (name=item_name,price=item_price)");

I get an error: "No property or field 'name' exists in type 'item'"

Can this be done?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

ok, figured it out, this wis what was needed:

var v = db.items.Select("new (item_name as name,item_price as price)");
link|improve this answer
how can you access to those fields? v.name? :s – Cem Dec 17 '09 at 12:58
yes, whatever you name them – naspinski Jan 27 '10 at 3:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.