标签: c# asp.net-core-mvc
在将数据发布到我的API时,我正在尝试将我的属性映射到其他名称。
public class SampleModel { [JsonProperty("ugly_name")] // <- this line using built-in stuff public string BeautifulName { get; set; } }
使用MVC 6?
上面的代码使用Newtonsoft.Json。
Newtonsoft.Json