我正在为网站上的新闻制作标签。首先使用实体框架代码。 PostTag关联表(PostId + TagId)自动生成。 这是我的模特:
public class Post
{
public int Id { get; set; }
//...
public virtual ICollection<Tag> Tags { get; set; }
}
public class Tag
{
public int Id { get; set; }
//...
public virtual ICollection<Post> Posts { get; set; }
}
问题在于为我的管理面板实施Post Editor Action。创建和删除操作工作正常。这是我尝试过的,它会正确更新所有Post字段,但忽略Tags。
[HttpPost, ValidateInput(false)]
public ActionResult Edit(Post post, int[] TagId)
{
if (ModelState.IsValid)
{
post.Tags = new List<Tag> { };
if (TagId != null)
foreach (int f in TagId)
post.Tags.Add(db.Tags.Where(x => x.Id == f).First());
db.Entry(post).State = EntityState.Modified; // Doesnt update tags
db.SaveChanges();
return RedirectToAction("Index");
}
//...
解决方案
[HttpPost, ValidateInput(false)]
public ActionResult Edit(Post post, int[] TagId)
{
if (ModelState.IsValid)
{
Post postAttached = db.Posts.Where(x => x.Id == post.Id).First();
post.Tags = postAttached.Tags;
post.Tags.Clear();
if (TagId != null)
foreach (int f in TagId)
post.Tags.Add(db.Tags.Where(x => x.Id == f).First());
db.Entry(postAttached).CurrentValues.SetValues(post);
db.SaveChanges();
return RedirectToAction("Index");
}
感谢gdoron指出方向。
答案 0 :(得分:0)
我的消化:
[HttpPost, ValidateInput(false)]
public ActionResult Edit(Post post, int[] tagIds)
{
if (ModelState.IsValid)
{
post.Tags = db.Tags.Where(tag => tagIds.Contains(tag.Id));
db.Entry(post).State = EntityState.Modified;
db.SaveChanges();
return RedirectToAction("Index");
}
// some code here
}
我没有测试过,你能帮我们确认吗?