WCF RIA服务是否支持自定义方法? 还能在哪个dll中找到“[Custom]”属性?
答案 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.
}
});