如何将自定义函数添加到AbpODataEntityController?

时间:2019-03-14 13:48:09

标签: c# asp.net-core odata aspnetboilerplate

在最近的post中,有人建议如何向AbpODataEntityController添加自定义函数。我已经尝试过,但无法实现自己想要的。

例如,在我的AbpODataEntityController中,有两种方法称为TestEchoTest

public class TownsController : AbpODataEntityController<Town>, ITransientDependency
{
    public TownsController(IRepository<Town> repository) : base(repository)
    {
    }

    // [HttpPost]
    public string Test()
    {
        return "inanc";
    }

    // [HttpPost]
    // [HttpGet]
    public IActionResult EchoTest([FromODataUri] string param)
    {
        return Ok(string.Format("The param was {0}", param));
    }
}

我的Startup.cs有:

builder.EntityType<Town>().Collection
    .Function("Test")
    .Returns<string>();
    //.Parameter<string>("param");

builder.EntityType<Town>()//.Action("stringTest")
    .Function("EchoTest")
    .Returns<IActionResult>()
    .Parameter<string>("param");

简单功能Test是可以的。结果为:

  

{“ @ odata.context”:“ http://localhost:21021/odata/ $ metadata#Edm.String”,“ value”:“ inanc”}

但是带有名称为param的参数的函数不起作用。我收到404错误。

我通过http://localhost:21021/odata/towns/EchoTest?param=foo调用该方法。

我哪里出错了?我应该有一些可以接受参数的自定义函数。

谢谢。

1 个答案:

答案 0 :(得分:0)

您缺少.Collection

builder.EntityType<Town>().Collection
    .Function("EchoTest")
    .Returns<IActionResult>()
    .Parameter<string>("param");

正确的网址:http://localhost:21021/odata/Towns/Default.EchoTest(param='foo')