使用自定义规则将C#对象序列化为JSON

时间:2014-05-23 15:48:05

标签: c# json json.net

我有以下对象

public class ViewModel
{
    //other properties
    public int IdSomethingType { get; set; } //Id of selected SomethingType
    public IEnumerable<SelectListItem> SomethingTypes { get; set; }
}

SelectListItemID SomethingTypeText表示组成。实际上,SomethingTypes在MVC应用程序中用于绑定到下拉列表。 我需要将其序列化为JSON,但在JSON中我希望将这些相关属性连接在一起:"SomethingType" = "Text representation"

如何使用Newtonsoft完成这项工作?

0 个答案:

没有答案