gpt4 book ai didi

c# - mvc 和 EF 中的多对多关系

转载 作者:行者123 更新时间:2023-11-30 18:46:15 25 4
gpt4 key购买 nike

我创建了一个博客网站,用户可以在其中发布博客,在我使用 Entity Framework 的模型和数据库中,帖子标签

在我的数据库中,我还有 PostTagMap,但是我在我的 EF 模型中看不到它。不确定我是否需要。 PostTagMap 仅包含 Post 和 Tag 的唯一标识符。

(should be noted I created the database from the model)

在我的 Create Post View (和 Controller )上,我希望用户可以选择创建标签(连同那里的帖子),确保他们彼此识别。但是我找不到办法做到这一点。

后模型:

public partial class Post
{
public Post()
{
this.Tags = new HashSet<Tag>();
}

public int Id { get; set; }
public string BlogUserEmail { get; set; }
public int CategoryId { get; set; }
public string Title { get; set; }
public string ShortDescription { get; set; }

[AllowHtml]
public string Description { get; set; }
public string Meta { get; set; }
public string UrlSlug { get; set; }
public bool Published { get; set; }
public System.DateTime PostedOn { get; set; }
public Nullable<System.DateTime> Modified { get; set; }

public virtual BlogUser BlogUser { get; set; }
public virtual Category Category { get; set; }
public virtual ICollection<Tag> Tags { get; set; }
}


<h2>Create</h2>

@using (Html.BeginForm()) {
@Html.AntiForgeryToken()
@Html.ValidationSummary(true)

<fieldset>
<legend>Post</legend>

<div class="editor-label">
@Html.HiddenFor(model => model.BlogUserEmail, User.Identity.Name)
</div>
<div class="editor-field">
@Html.ValidationMessageFor(model => model.BlogUserEmail)
</div>

<div class="editor-label">
@Html.LabelFor(model => model.CategoryId, "Category")
</div>
<div class="editor-field">
@Html.DropDownList("CategoryId", String.Empty)
@Html.ValidationMessageFor(model => model.CategoryId)
</div>

<div class="editor-label">
@Html.LabelFor(model => model.Title)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.Title)
@Html.ValidationMessageFor(model => model.Title)
</div>

<div class="editor-label">
@Html.LabelFor(model => model.ShortDescription)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.ShortDescription)
@Html.ValidationMessageFor(model => model.ShortDescription)
</div>

<div class="editor-label">
@Html.TextAreaFor(model => model.Description)
</div>
<div class="editor-field">
@Html.ValidationMessageFor(model => model.Description)
</div>

<p>
<input type="submit" value="Create" />
</p>
</fieldset>

编辑:

我无法在我的 Create View 中为标签使用 EditorFor 字段。这是因为 Create View 绑定(bind)到 @Model MyBlogger.Post

标签只显示为一个集合,因此如果我说:

@Html.EditorFor(model => m.Tags) 

然后它在渲染时在我的 View 中显示为空白。

我已经尝试了 foreach 但是没有用。例如在我的 Create View 中尝试这样做:

@foreach (var item in Model.Tags)
{
@Html.EditorFor(model => item.Name)
@Html.EditorFor(model => item.Description)
@Html.EditorFor(model => item.UrlSlug)
}

我收到错误:未将对象引用设置为对象的实例。

最佳答案

多对多关系中,如果您使用DataAnnotation,EF 将创建多对多关系。在你的情况下

Post 类具有 Tag

的集合导航属性
public virtual ICollection<Tag> Tags { get; set; }

并且Tag有一个Post的集合导航属性

 public virtual ICollection<Post> Posts { get; set; }

这将在 Post 和 Tag 之间创建多对多关系。


在您看来:

有几种方法可以添加/获取标签 ID 的值,将其绑定(bind)到模型 Post 的一种方法是尝试以下方法,因为您已经在两个模型之间建立了关系:

      <div class="editor-field">
@Html.EditorFor(model => model.Tags.Id)
@Html.ValidationMessageFor(model => model.Tags.Id)
</div>

model.Tags 返回一个 Tags 的集合,如果你需要一个你需要显式指定的属性(例如 Id、Name ...)

插入 M-to-M 关系:

if (ModelState.IsValid)
{
Tag tag = new tag{id=post.Tags.Id};
db.Tag.Attach(tag);
db.Tag.Add(tag);
db.Posts.Add(post);
db.SaveChanges();
return RedirectToAction("Index");
}

关于c# - mvc 和 EF 中的多对多关系,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29758377/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com