• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

在ASP.NETWebAPI下使用[Serializble]的问题

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

By default you don't need to use neither [Serializble] nor [DataContract] to work with Web API. 

默认情况下ASP.NET Web API 不需要[Serializble] 或者[DataContract]标记

Just leave your model as is, and Web API would serialize all the public properties for you.

ASP.NET Web API会自动帮我们序列化所有Public属性

Only if you want to have more control about what's included, you then decorate your class with [DataContract] and the properties to be included with [DataMember] (because both DCS and JSON.NET respsect these attributes).

如果你想控制只需要哪些属性需要序列化,你可以用[DataContract],[DataMember]标记。

If for some reason, you need the [Serializble] on your class (i.e. you are serializing it into a memory stream for some reason, doing deep copies etc), then you have to use both attributes in conjunction to prevent the backing field names:

如果你因为某些原因,必须用[Serializble]标记(比如将数据保存在Couchbase),那么,你应该同时用[Serializable]和 [DataContract]去控制。

[Serializable]
[DataContract]
public class Error
{
    [DataMember]
    public string Status { get; set; }
    [DataMember]
    public string Message { get; set; }
    [DataMember]
    public string ErrorReferenceCode { get; set; }
    [DataMember]
    public List<FriendlyError> Errors { get; set; }
}

 

原文链接:http://stackoverflow.com/questions/12334382/net-webapi-serialization-k-backingfield-nastiness


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Asp.Net身份认证的方式(1)发布时间:2022-07-10
下一篇:
Asp.netmvc3-JSONpost&amp;AOP发布时间:2022-07-10
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap