multiple JsonProperty Name assigned to single property(分配给单个属性的多个 JsonProperty 名称)
问题描述
我有两种格式的 JSON,我想将它们反序列化为一个类.我知道我们不能将两个 [JsonProperty]
属性应用于一个属性.
I have two format of JSON which I want to Deserialize to one class.
I know we can't apply two [JsonProperty]
attribute to one property.
您能建议我实现这一目标的方法吗?
Can you please suggest me a way to achieve this?
string json1 = @"
{
'field1': '123456789012345',
'specifications': {
'name1': 'HFE'
}
}";
string json2 = @"
{
'field1': '123456789012345',
'specifications': {
'name2': 'HFE'
}
}";
public class Specifications
{
[JsonProperty("name1")]
public string CodeModel { get; set; }
}
public class ClassToDeserialize
{
[JsonProperty("field1")]
public string Vin { get; set; }
[JsonProperty("specification")]
public Specifications Specifications { get; set; }
}
我希望 name1
和 name2
都反序列化为规范类的 name1
属性.
I want name1
and name2
both to be deserialize to name1
property of specification class.
推荐答案
一个不需要转换器的简单解决方案:只需向您的类添加第二个私有属性,用 [JsonProperty("name2")]
,并让它设置第一个属性:
A simple solution which does not require a converter: just add a second, private property to your class, mark it with [JsonProperty("name2")]
, and have it set the first property:
public class Specifications
{
[JsonProperty("name1")]
public string CodeModel { get; set; }
[JsonProperty("name2")]
private string CodeModel2 { set { CodeModel = value; } }
}
小提琴:https://dotnetfiddle.net/z3KJj5
这篇关于分配给单个属性的多个 JsonProperty 名称的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:分配给单个属性的多个 JsonProperty 名称
- C# 通过连接字符串检索正确的 DbConnection 对象 2022-01-01
- Azure Active Directory 与 MVC,客户端和资源标识同一 2022-01-01
- 在 C# 中异步处理项目队列 2022-01-01
- 为什么 C# 中的堆栈大小正好是 1 MB? 2022-01-01
- 带问号的 nvarchar 列结果 2022-01-01
- CanBeNull和ReSharper-将其用于异步任务? 2022-01-01
- 是否可以在 .Net 3.5 中进行通用控件? 2022-01-01
- 使用 rss + c# 2022-01-01
- 在 LINQ to SQL 中使用 contains() 2022-01-01
- Windows 喜欢在 LINUX 中使用 MONO 进行服务开发? 2022-01-01