我有以下对象
public class ViewModel
{
//other properties
public int IdSomethingType { get; set; } //Id of selected SomethingType
public IEnumerable<SelectListItem> SomethingTypes { get; set; }
}
SelectListItem
由ID
SomethingType
和Text
表示组成。实际上,SomethingTypes
在MVC应用程序中用于绑定到下拉列表。
我需要将其序列化为JSON,但在JSON中我希望将这些相关属性连接在一起:"SomethingType" = "Text representation"
如何使用Newtonsoft完成这项工作?