如何通过域服务从数据库中读取数据并将数据添加到Silverlight中的observablecollection中?我不想要表格中的每一列,但其中一些。 我想以某种方式收集数据,然后用for循环收集som值。
修改 我的代码,我用数据库中的数据填充数据网格:
EntityQuery<Material> query =
from c in _materialContext.GetMaterialQuery()
where c.tillverkningsorderID.Equals(1)
orderby c.materialID
select c;
LoadOperation<Material> loadOp = this._materialContext.Load(query);
myMaterialGrid.ItemsSource = loadOp.Entities;
完全没问题:https://www.dropbox.com/s/5j0o6p7m09ym3xn/skarmklipp_material.PNG
但我想首先将数据添加到ObservableCollection中。我只想显示材料MaterialID和enhet