vote up 0 vote down star

How can i dynamically get a list of Column names based on my query model below using Linq to SQL. Example of query below.

public void GetColumnName()
{
       var db = from ci in Db.CatalogItems
                join i in Items
                on ci.ItemId equals i.ItemId
                select i;
}
flag

3 Answers

vote up 0 vote down

I'm new to the concept of Reflection. How do I go about doing that with the model query above?

link|flag
vote up 0 vote down
from rec in Db.syscolumns ....
link|flag
vote up 0 vote down

use reflection on db? (get the fields)

link|flag

Your Answer

Get an OpenID
or

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