SingleResult.Create 空 IQueryable 上的 Odata 序列化错误
Odata serialization error for SingleResult.Create on an empty IQueryable
我正在使用 OData v4 并尝试让一个非常简单的控制器工作:
控制器:
public class ProductController : ODataController
{
readonly MasterDataEntities db = new MasterDataEntities();
[EnableQuery(PageSize = MaxPageSize)]
public IQueryable<Product> Get()
{
return db.Products;
}
[EnableQuery]
public SingleResult<Product> Get([FromODataUri] string key)
{
return SingleResult.Create(db.Products.Where(p => p.Code == key));
}
}
WebApiConfig:
ODataModelBuilder builder = new ODataConventionModelBuilder();
builder.EntitySet<Product>("Product");
builder.EntityType<Product>().HasKey(p => p.Code);
config.MapODataServiceRoute("ODataRoute", null, builder.GetEdmModel());
当我打电话给 servicelocation/Product('abc')
如果 abc 是有效代码,我会得到一个很好的 JSON 序列化产品对象
如果 abc 是无效代码,我会收到以下错误:
'SingleResult`1' 无法使用 ODataMediaTypeFormatter 序列化。
在System.Web.OData.Formatter.ODataMediaTypeFormatter.GetSerializer(类型类型、对象值、IEdmModel 模型、ODataSerializerProvider serializerProvider)
我已经花了 2 天时间寻找解决方案,但似乎没有其他人遇到这个问题?
请查看此解决方法here
A workaround that will recognise when a SingleResult type does not contain any results and replace it with a 404 instead of throwing a SerializationException.
我正在使用 OData v4 并尝试让一个非常简单的控制器工作:
控制器:
public class ProductController : ODataController
{
readonly MasterDataEntities db = new MasterDataEntities();
[EnableQuery(PageSize = MaxPageSize)]
public IQueryable<Product> Get()
{
return db.Products;
}
[EnableQuery]
public SingleResult<Product> Get([FromODataUri] string key)
{
return SingleResult.Create(db.Products.Where(p => p.Code == key));
}
}
WebApiConfig:
ODataModelBuilder builder = new ODataConventionModelBuilder();
builder.EntitySet<Product>("Product");
builder.EntityType<Product>().HasKey(p => p.Code);
config.MapODataServiceRoute("ODataRoute", null, builder.GetEdmModel());
当我打电话给 servicelocation/Product('abc')
如果 abc 是有效代码,我会得到一个很好的 JSON 序列化产品对象
如果 abc 是无效代码,我会收到以下错误:
'SingleResult`1' 无法使用 ODataMediaTypeFormatter 序列化。
在System.Web.OData.Formatter.ODataMediaTypeFormatter.GetSerializer(类型类型、对象值、IEdmModel 模型、ODataSerializerProvider serializerProvider)
我已经花了 2 天时间寻找解决方案,但似乎没有其他人遇到这个问题?
请查看此解决方法here
A workaround that will recognise when a SingleResult type does not contain any results and replace it with a 404 instead of throwing a SerializationException.