Web API:带有类型参数的AttributeRouting可能吗?

时间:2013-10-03 16:22:27

标签: c# routing asp.net-web-api attributerouting

这可能吗? 例如,

    [GET("api/item/{id}/related")]
    public dynamic GetRelatdItemsById(string id, Filter filter)
    {
        // get items related by id and optionally filter by `filter`
    }

如果可以,那么应该如何设置查询字符串?

非常感谢。

1 个答案:

答案 0 :(得分:1)

没关系。忘了使用[FromUri]属性。 :)