var s = myInventoryEntities.p_Forms().Select(i => new { i.Customer, i.Order_ID }).Distinct().ToList();
ViewBag.MyData = s;
return View();
這給了我使用一個IEnumerable <匿名類型>動態類型視圖中
{ Customer = "Bob", Order_ID = 2644550 }
在我的剃刀代碼
我遍歷數據
@foreach (var x in @ViewBag.MyData){
x.Customer // Does not exist! :(
}
請幫幫忙!
「對象」不包含「客戶」
你需要的'@'X之前?難道只是'x'? – 2012-08-09 18:12:39
@DavidHoerster:不需要,在這種情況下 – Shyju 2012-08-09 18:35:28