任何人都知道一种方法,您可以提供一些示例数据,以便在ServiceStack的元数据页面上显示您的响应模型吗?
对于此响应模型
public class GetIncidentResponse
{
public IEnumerable<Incident> Incidents { get; set; }
}
我在元数据页面上看到了这个
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length
{}
当我希望能够显示类似
的内容时HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length
{ "Filter example 1", "Filter example 2"}
答案 0 :(得分:1)
@mythz评论解决了我的问题。将IEnemerable接口更改为IList工作。