我希望预期的URL路由符合查询字符串(?$ select =)的OData格式。我的api定义如下,但是无法在select前面加上'$'符号。
public Task<IActionResult> GetAsync([FromRoute] string id, [FromQuery] string select = "None")
路线看起来像
GET /{id}?select=none
代替
GET /{id}?$select=none
我该怎么做才能符合OData格式?