我有以下课程:
public class City {
public string key1 {get; set; }
public string key2 { get; set; }
public string col1 { get; set; }
public string col2 { get; set; }
public int newplusnew2 { get; set; }
}
一个视图模型:
public class CityViewModel {
public City city { get; set; }
public int new1 { get; set; }
public int new1 { get; set; }
}
一种行为:
public JsonResult JsonCreate(CityViewModel viewModel)
{
// Validation checks go here
var model = new City ();
???
}
有人能告诉我从视图模型中填充四个字符串列和 int 列的最佳方法吗?我只是想知道是否有一些推荐的方法来做到这一点。