I m, using a RIA Services territorialContext in a银灯 4 app toload data. 如果我从“国际倡议”的深处了解情况,那么“国际倡议”是否总是站在一边?
或者说另一种方式,退步是否总是与呼吁一样。
下文举例说明情景......
private void LoadStuff()
{
MyDomainContext context = new MyDomainContext ();
context.Load(context.GetStuffQuery(), op =>
{
if (!op.HasError)
{
// Use data.
// Which thread am I on?
}
else
{
op.MarkErrorAsHandled();
// Do error handling
}
}, null
);
}