RIA服務查詢我想要做類似下面我在哪裏加載並行一些相關的數據,每個已經載入實體的集合的東西:加載多個在同一時間
foreach (var parentThing in ParentThings)
{
Context.Load(Context.GetChildThingForParentQuery(parentThing.Id), op =>
{
parentThing.Child = op.Entities.FirstOrDefault();
}, null);
}
然而,這不是」 t似乎工作。數據全部混入回調lambda中,例如parentThing始終是集合中的LAST對象,op.Entities始終只包含FIRST子元素。
啊哈!謝謝,這讓它工作。 – user380689 2011-05-12 00:10:52