0
我的模型類是這樣的:鑄造匿名類型稱爲模型
Public class abc {
public string p1 get; set;
public string p2 get; set;
}
,我試圖投這樣
IEnumerable<abc> data= (IEnumerable<abc>) (from d in d.GetAll()
select new {
p1= d.p1,
p2= d.p2
}).Distinct();
這是給我的錯誤:
Unable to cast object of type <DistinctIterator>
請告知
在stackoverflow快速搜索已透露這篇文章可能有所幫助:[Linq類型轉換泛型類型](http://stackoverflow.com/questions/8204930/linq-type-conversion-on-generic-types ) – Jeremy