在我的DocumentDb文档中,我不想包含具有NULL值的属性。例如,我有以下POCO类。
public class Person
{
[JsonProperty(PropertyName="id")]
public int PersonId {get; set;}
[JsonProperty(PropertyName="firstName")]
public string FirstName {get; set;}
[JsonProperty(PropertyName="middleName")]
public string MiddleName {get; set;}
[JsonProperty(PropertyName="lastName")]
public string LastName {get; set;}
}
有些人没有中间名,当我在我的收藏中保存一个人的文件时,我不希望包含中间名。目前,没有中间名的人保存为:
{
"id": 1234,
"firstName": "John",
"middleName": null,
"lastName": "Smith"
}
这是正常行为吗?如果没有,我如何 NOT 在我的文档中包含具有NULL值的中间名称属性?
P.S。所有序列化/反序列化都由JSON.NET
处理答案 0 :(得分:3)
我想我找到了答案。看起来我可以告诉JSON.NET使用
忽略具有NULL值的属性NullValueHandling = NullValueHandling.Ignore
答案 1 :(得分:0)
您可以在初始化 Cosmos Client 时执行此操作,有一个类似于 JSON.Net 的序列化选项。
CosmosClient client = new CosmosClient(yourConnectionString, new CosmosClientOptions()
{
SerializerOptions = new CosmosSerializationOptions()
{
IgnoreNullValues = true,
}
});