我有一個GridView通過LINQ表達式填充。
事情是這樣的:如果我用匿名對象填充GridView,我如何獲得它們的屬性?
GridView1.DataSource = from c in customers, o in c.Orders,
total = o.Total where total >= 2000 select new {id = c.CustomerID,
order = o.OrderID, total = total};
,並在其RowCreated方法我試圖得到一個屬性,例如ID,但它沒有一個已知類型:
object element = e.Row.DataItem;
int id = element.id; // It's bad!!!!!!
我怎麼能做?
謝謝!
這是正確的滾動方式。 – 2009-04-20 15:27:07