ef core中如何实现多对多的表映射关系

Posted 壹飛臺

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ef core中如何实现多对多的表映射关系相关的知识,希望对你有一定的参考价值。

文档:https://docs.microsoft.com/en-us/ef/core/modeling/relationships

 class MyContext : DbContext
  {
      public DbSet<Post> Posts { get; set; }
      public DbSet<Tag> Tags { get; set; }
 
      protected override void OnModelCreating(ModelBuilder modelBuilder)
      {
          modelBuilder.Entity<PostTag>()
              .HasKey(t => new { t.PostId, t.TagId });
 
         modelBuilder.Entity<PostTag>()
             .HasOne(pt => pt.Post)
             .WithMany(p => p.PostTags)
             .HasForeignKey(pt => pt.PostId);
 
         modelBuilder.Entity<PostTag>()
             .HasOne(pt => pt.Tag)
             .WithMany(t => t.PostTags)
             .HasForeignKey(pt => pt.TagId);
     }
 }
 
 public class Post
 {
     public int PostId { get; set; }
     public string Title { get; set; }
     public string Content { get; set; }
 
     public List<PostTag> PostTags { get; set; }
 }
 
 public class Tag
 {
     public string TagId { get; set; }
 
     public List<PostTag> PostTags { get; set; }
 }
 
 public class PostTag
 {
     public int PostId { get; set; }
     public Post Post { get; set; }
 
     public string TagId { get; set; }
     public Tag Tag { get; set; }
 }

 

以上是关于ef core中如何实现多对多的表映射关系的主要内容,如果未能解决你的问题,请参考以下文章

Hibernate多对一,多对多的表映射关系

EF Core中通过Fluent API配置多对多关系

EF Core中通过Fluent API配置多对多关系

EF Core中通过Fluent API配置多对多关系

EF Core中通过Fluent API配置多对多关系

定义引用同一个表的多对多关系(EF7/core)