时间:2010-07-26 17:40:45

标签: silverlight entity-framework asynchronous notifications wcf-ria-services

1 个答案:

答案 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
}