我正在看this教程。在15:40左右,發言者說像LINQ查詢這樣的東西不會創建像BindingListCollectionView
這樣的豐富集合。我想也許這意味着更改不會被保存到數據庫或其他東西。所以我嘗試用爲什麼需要創建可觀察的集合
var result = from cust in database.Customers
where cust.City == "Seattle"
select cust;
更換
var result = database.Customers.Execute(System.Data.Objects.MergeOption.AppendOnly);
,所有仍然正常工作。
我可以說「功能」不存在於「BindingListCollectionView」? – 2010-09-03 14:21:39
如果你想使用BindingListCollectionView,你可以把你的結果(這是一個IEnumerable)並將其放入一個新的BindingListCollectionView或ObservableCollection – 2010-09-03 14:55:17