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;
}