WCF RIA服务定制方法?

时间:2010-03-10 06:06:13

标签: wcf silverlight ria

WCF RIA服务是否支持自定义方法? 还能在哪个dll中找到“[Custom]”属性?

1 个答案:

答案 0 :(得分:7)

是WCF RIA服务可以支持自定义方法。

您可以使用[Invoke]属性指定装饰自定义方法。 EG:

[EnableClientAccess()]
public class TestDomainService : LinqToEntitiesDomainService<TestEntities>
{
  [Invoke]
  public Test CustomMethodFetch(Guid testId)
  {
    ...
    return foundTest; 
  }
}

..你可以通过......来称呼它。

var ctx = new TestDomainContext();

ctx.CustomMethodFetch( testId, (op) =>
{
  if (op.HasError)
    // Handle errors.
  else
  {
    var testEntity = op.Value;
    // Do stuff.
  }
});