0
我有一個模型。這種模式是這樣的:Asp.net MVC 3從viewModel Dropdownlist
public int Id { get; set; }
[Required]
public string Name { get; set; }
[Required]
public List<Category> Parent { get; set; }
在添加動作我填充父:
public ViewResult Add()
{
var addCategoryModel = new CategoryEditModel
{
Parent = Mapper.Map<List<Category>>(_productRepository.Categories.ToList())
};
return View("add", addCategoryModel);
}
當我提交表單我的模型狀態始終是無效的,因爲在我的DropDownList的選定值」 ..是無效。」 我犯了錯誤。什麼是正確的方法來做到這一點?
你能證明你的觀點? –