c# – 如何在控制器操作中访问$orderBy等查询参数?

前端之家收集整理的这篇文章主要介绍了c# – 如何在控制器操作中访问$orderBy等查询参数?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我只是阅读Microsoft REST API Guidlines( https://github.com/Microsoft/api-guidelines/blob/master/Guidelines.md),并且有一个以美​​元符号开头的查询参数,例如: $排序依据.

9.6 Sorting collections

The results of a collection query MAY be sorted based on property
values. The property is determined by the value of the $orderBy query
parameter.

现在,如果我尝试在操作方法中定义类似$orderBy的方法参数,那么它在语法上是不正确的($orderBy不是有效的标识符).

public class ExampleController : Controller
{
    // this is syntactically not correct
    public IActionResult Collection(....,string $orderBy = null)
    {
         ...
    }
}

如何在ASP.NET Core的操作方法中访问以美元符号开头的查询参数?

解决方法

使用FromQuery并设置名称[FromQuery(Name =“$orderBy”)] string orderBy:
public class ExampleController : Controller
{        
    public IActionResult Collection(....,[FromQuery(Name = "$orderBy")]string orderBy = null)
    {
         ...
    }
}
原文链接:https://www.f2er.com/csharp/244239.html

猜你在找的C#相关文章