我有一个应用程序,其中有食谱和标签。由于Recipes可以有多个Tags,并且Tags可以属于多个recipe,所以我有以下模型:
public class Tag : IModel
{
[Key]
public int ID { get; set; }
[Required(ErrorMessage = "Name is required.")]
public string Name { get; set; }
public virtual ICollection<Recipe> Recipes { get;set; }
}
public class Recipe : IModel
{
[Key]
public int ID { get; set; }
[ForeignKey("Category")]
public int CategoryId { get; set; }
[Required(ErrorMessage = "The Title is required.")]
public string Title { get; set; }
public virtual ICollection<Tag> Tags { get; set; }
public virtual Category Category { get; set; }
}
我的 Recipe 控制器有一个 HttpGet Edit 操作,它返回视图的配方:
public ActionResult Edit(int id = 0)
{
Recipe recipe = _recipeService.GetByID(id, "Category,Tags");
if (recipe == null)
{
return HttpNotFound();
}
CreateEditRecipeViewModel viewModel = new CreateEditRecipeViewModel(recipe, PopulateCategoryLookup(recipe));
return View(viewModel);
}
此时,Recipe 的 Tag 集合由我的 GetById() 方法填充。但是,我不清楚我应该如何向视图模型添加一个集合,以便它可以在视图中出现。这是我当前的视图模型:
public class CreateEditRecipeViewModel
{
[HiddenInput]
public int RecipeID { get; set; }
public int CategoryId { get; set; }
[Required(ErrorMessage = "The Title is required.")]
public string Title { get; set; }
}
在我看来,我希望有一个文本框,其中有一个逗号分隔的标签列表(例如早餐、素食、无麸质)。当打开编辑视图时,我希望它填充当前分配给配方的每个标签的名称。发布表单后,我想拆分标签列表,并在 HttpPost 编辑操作中,将值与 EF 协调一致。
如果有人对在 ViewModel 和 View 中表示复杂对象的集合有指导,我将不胜感激!
谢谢,
克里斯