很多时候我看到开发人员在他们的 Asp.net Web API 模型中使用 DataContract 和 DataMember 属性?
有什么区别和最佳实践?
很多时候我看到开发人员在他们的 Asp.net Web API 模型中使用 DataContract 和 DataMember 属性?
有什么区别和最佳实践?
使用 , 的主要优点DataContract
是可以避免 和 的一些常见序列化提示的重复XmlMediaTypeFormatter
属性JsonMediaTypeFormatter
。即,您可以选择加入/退出要序列化的模型的特定属性或重命名属性,并让两个格式化程序都尊重这一点。
例如:
[DataContract]
public class Sample {
[DataMember]
public string PropOne {get;set;}
public string PropTwo {get;set;}
[DataMember(Name="NewName")]
public string PropThree {get; set;}
}
相当于:
public class Sample {
public string PropOne {get;set;}
[XmlIgnore]
[JsonIgnore]
public string PropTwo {get;set;}
[JsonProperty(PropertyName = "NewName")]
[XmlElement("NewName")]
public string PropThree {get; set;}
}