答案 0 :(得分:2)
您需要使用回调。我还没有使用过RIA的正式版本,但是在测试版中它就是这样使用的。
public MainPage()
{
InitializeComponent();
LoadOperation<Customer> loadOp = this._customerContext.Load(this._customerContext.GetCustomersQuery(),MyCallback,null);
CustomerGrid.ItemsSource = loadOp.Entities;
}
private void MyCallback(LoadOperation<Customer> loadOperation)
{
//This will be called when the load is complete
}