0

我已经设法$inlinecount用 WebApi.OData (v 4.0.0) 使用ODataQueryOptions<T>PageResult<T>类来实现,如下所示:

POCO

public class Poco
{
    public int id { get; set; }
    public string name { get; set; }
    public string type { get; set; }
}

控制器

[ActionName("Default")]
public PageResult<Poco> Get(ODataQueryOptions<Poco> queryOptions)
{
    var data = new Poco[] { 
        new Poco() { id = 1, name = "one", type = "a" },
        new Poco() { id = 2, name = "two", type = "b" },
        new Poco() { id = 3, name = "three", type = "c" },
        new Poco() { id = 4, name = "four", type = "d" },
        new Poco() { id = 5, name = "five", type = "e" },
        new Poco() { id = 6, name = "six", type = "f" },
        new Poco() { id = 7, name = "seven", type = "g" },
        new Poco() { id = 8, name = "eight", type = "h" },
        new Poco() { id = 9, name = "nine", type = "i" }
    };

    var t = new ODataValidationSettings() { MaxTop = 2 };
    queryOptions.Validate(t);
    var s = new ODataQuerySettings() { PageSize = 1 };
    IQueryable results = queryOptions.ApplyTo(data.AsQueryable(), s);

    var next = Request.GetNextPageLink();
    var count = Request.GetInlineCount();

    return new System.Web.Http.OData.PageResult<Poco>(
        results as IEnumerable<Poco>, next, count);
}

当我从 JSON 切换到老式 XmlSerializer 时出现错误 406。有谁知道这是否应该工作?

var xml = GlobalConfiguration.Configuration.Formatters.XmlFormatter;
xml.UseXmlSerializer = true;
GlobalConfiguration.Configuration.Formatters.Remove(
    GlobalConfiguration.Configuration.Formatters.JsonFormatter);
4

1 回答 1

1

PageResult不能被序列化,XmlSerializer因为它没有公共的、无参数的构造函数。但是没有什么能阻止你定义你自己的类似类型,它有一个公共的、无参数的构造函数。做起来应该很简单。我建议查看源代码PageResult并采用类似的方法。

于 2013-03-18T17:18:38.533 回答