使用XmlSerializer进行OData分页

时间:2013-03-18 16:33:29

标签: c# asp.net-web-api odata

我已经设法使用$inlinecountODataQueryOptions<T>类,使用WebApi.OData(v 4.0.0)实现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);

1 个答案:

答案 0 :(得分:1)

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