我有这门课,作为精简版:
public class SportTableRow
{
public Int32 Won { get; set; }
public Int32 Lost { get; set; }
public Int32 Drawn { get; set; }
public Int32 For { get; set; }
}
当我通过 WebAPI 调用数据时,它看起来像这样(再次减少)......
public List<SportTableRow> Get()
{
var options = ....
var sport = ....
var locationCode = ...
return SportManager.GetOverallTable(sport, options,
locationCode).TableRows;
}
当我在调试器中检查返回的数据时,您可以在列表中看到属性...
但是,当我通过 fiddler 调用时,您会看到缺少一些属性...
...而且它似乎是任何Int
为 0 的 's 和bool
's 是假的等。
我需要在实际类上设置什么,还是在 JSON 序列化器中设置什么?