0
如果您有自定義類型,並且您希望爲該自定義類型指定List(of T),那麼您如何在vb中這樣做?我發現了一個C#示例如下在LINQ查詢中使用自定義類型
List<myclass> result = (from c in db.Customers where c.orders.count > 1 Select new Myclass
{
Id = c.customerID,
Name = c.contactname
}).Tolist();
但我堅持努力讓它在Vb.net工作
當我這樣做,我得到一個錯誤 不允許在查詢中顯式構造實體類型'Myclass'。 這篇文章http://stackoverflow.com/questions/787296/explicit-construction-of-entity-type-in-query-is-not-allowed說這是不允許的 – 2009-06-04 15:12:30