我正在创建一个新的C#OData4 Web API,其中一个名为Call
的类具有动态属性,OData 4允许通过“打开类型”。我相信我已经设置了所有内容并正确配置它,但序列化响应不包括动态属性。
我配置错了吗?
public partial class Call
{
public int Id { get; set; }
public string Email { get; set; }
public IDictionary<string, object> DynamicProperties { get; }
}
public class CallController : ODataController
{
[EnableQuery]
public IQueryable<Call> GetCall([FromODataUri] int key)
{
return _context.Call.GetAll();
}
}
public static partial class WebApiConfig
{
public static void Register(HttpConfiguration config)
{
AllowUriOperations(config);
ODataModelBuilder builder = new ODataConventionModelBuilder();
builder.ComplexType<Call>();
var model = builder.GetEdmModel();
config.MapODataServiceRoute(RoutePrefix.OData4, RoutePrefix.OData4, model);
}
private static void AllowUriOperations(HttpConfiguration config)
{
config.Count();
config.Filter();
config.OrderBy();
config.Expand();
config.Select();
}
}
答案 0 :(得分:1)
您可以通过添加以下行来启用OData开放类型中的空值动态属性的序列化(在我的代码中,在方法Register(HttpConfiguration config)中的WebApiConfig.cs中)
config.Properties.AddOrUpdate("System.Web.OData.NullDynamicPropertyKey", val=>true, (oldVal,newVal)=>true);
然后我的带有null的动态属性开始序列化。
答案 1 :(得分:0)
您可以在Call
类型OpenType="true"
上检查元数据吗?如果没有,请尝试将其EntitySet
更改为此行:
builder.ComplexType<Call>();
到这个
builder.EntitySet<Call>("Calls");
如果您的元数据中确实有OpenType="true"
,请检查您的DynamicProperties
集合中是否确实有一些条目
答案 2 :(得分:0)
如果密钥对中的值为null
,则该属性不会被序列化。我期待它被序列化为
“key”:null
以下是一些其他示例
DynamicProperties.Add("somekey", 1);
“somekey”:1
DynamicProperties.Add("somekey", "1");
“somekey”:“1”
DynamicProperties.Add("somekey", null);
答案 3 :(得分:0)
也可以使用configuration.SetSerializeNullDynamicProperty(true);
,它更加简洁和不言自明。