关系Relationships
关系定义两个实体之间的关系。 在关系数据库中,这由外键约束表示。
备注
本文中的大多数示例都使用一对多关系来演示概念。 有关一对一关系和多对多关系的示例,请参阅文章末尾的其他关系模式部分。
术语定义Definition of terms
有许多术语用于描述关系
相关实体: 这是包含外键属性的实体。 有时称为关系的 “子级”。
主体实体: 这是包含主/备用键属性的实体。 有时称为关系的 “父项”。
主体密钥: 唯一标识主体实体的属性。 这可能是主键或备用密钥。
外键: 用于存储相关实体的主体键值的依赖实体中的属性。
导航属性: 在主体和/或从属实体上定义的属性,该属性引用相关实体。
集合导航属性: 一个导航属性,其中包含对多个相关实体的引用。
引用导航属性: 保存对单个相关实体的引用的导航属性。
反向导航属性: 讨论特定导航属性时,此术语是指关系另一端的导航属性。
自引用关系: 依赖关系和主体实体类型相同的关系。
下面的代码显示与之间的一对多关系 Blog``Post
public class Blog
{
public int BlogId { get; set; }
public string Url { get; set; }
public List<Post> Posts { get; set; }
}
public class Post
{
public int PostId { get; set; }
public string Title { get; set; }
public string Content { get; set; }
public int BlogId { get; set; }
public Blog Blog { get; set; }
}
Post
是依赖实体Blog
是主体实体Blog.BlogId
是主体键(在本例中为主密钥,而不是备用密钥)Post.BlogId
为外键Post.Blog
是一个引用导航属性Blog.Posts
是集合导航属性Post.Blog
是的反向导航属性Blog.Posts
(反之亦然)
约定Conventions
默认情况下,当在某个类型上发现导航属性时,将创建一个关系。 如果当前数据库提供程序无法将其指向的类型映射为标量类型,则该属性被视为导航属性。
备注
按约定发现的关系将始终以主体实体的主键为目标。 若要以备用密钥为目标,则必须使用熟知的 API 执行其他配置。
完全定义的关系Fully defined relationships
关系最常见的模式是在关系两端定义导航属性,在依赖实体类中定义外键属性。
如果在两个类型之间找到一对导航属性,则这些属性将配置为同一关系的反向导航属性。
如果依赖实体包含名称与其中一种模式相匹配的属性,则该属性将被配置为外键:
<navigation property name><principal key property name>
<navigation property name>Id
<principal entity name><principal key property name>
<principal entity name>Id
public class Blog
{
public int BlogId { get; set; }
public string Url { get; set; }
public List<Post> Posts { get; set; }
}
public class Post
{
public int PostId { get; set; }
public string Title { get; set; }
public string Content { get; set; }
public int BlogId { get; set; }
public Blog Blog { get; set; }
}
在此示例中,突出显示的属性将用于配置关系。
备注
如果属性为主键,或者为与主体键不兼容的类型,则不会将其配置为外键。
备注
在 EF Core 3.0 之前,名为与主体键属性完全相同的属性也与外键匹配
无外键属性No foreign key property
尽管建议在依赖实体类中定义外键属性,但这并不是必需的。 如果未找到外键属性,则会使用名称引入阴影外键属性, <navigation property name><principal key property name>
<principal entity name><principal key property name>
如果依赖类型上没有导航,则为。
public class Blog
{
public int BlogId { get; set; }
public string Url { get; set; }
public List<Post> Posts { get; set; }
}
public class Post
{
public int PostId { get; set; }
public string Title { get; set; }
public string Content { get; set; }
public Blog Blog { get; set; }
}
在此示例中,阴影外键是 BlogId
因为预先计算导航名称将是冗余的。
备注
如果已存在具有相同名称的属性,则会以数字作为后缀的阴影属性名称。
单个导航属性Single navigation property
只包含一个导航属性(无反向导航,没有外键属性)就足以具有约定定义的关系。 还可以有一个导航属性和一个外键属性。
public class Blog
{
public int BlogId { get; set; }
public string Url { get; set; }
public List<Post> Posts { get; set; }
}
public class Post
{
public int PostId { get; set; }
public string Title { get; set; }
public string Content { get; set; }
}
限制Limitations
如果有多个在两种类型之间定义的导航属性(即,不仅仅是一对相互指向的导航属性),则导航属性表示的关系是不明确的。 你将需要手动对其进行配置以解决歧义。
级联删除Cascade delete
按照约定,级联删除将对所需的关系和ClientSetNull设置为cascade ,以实现可选关系。 Cascade表示也会删除依赖实体。 ClientSetNull表示未加载到内存中的依赖实体将保持不变,必须手动删除,或将其更新为指向有效的主体实体。 对于加载到内存中的实体,EF Core 将尝试将外键属性设置为 null。
请参阅 required和 optional关系部分,了解必需和可选关系之间的差异。
有关不同的删除行为和约定使用的默认值的详细信息,请参阅级联删除。
手动配置Manual configuration
若要在熟知的 API 中配置关系,请首先标识构成关系的导航属性。 HasOne
或 HasMany
标识要开始配置的实体类型上的导航属性。 然后,将调用链接到 WithOne
或 WithMany
以标识反向导航。 HasOne
/WithOne
用于引用导航属性,用于 HasMany
/ WithMany
集合导航属性。
class MyContext : DbContext
{
public DbSet<Blog> Blogs { get; set; }
public DbSet<Post> Posts { get; set; }
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.Entity<Post>()
.HasOne(p => p.Blog)
.WithMany(b => b.Posts);
}
}
public class Blog
{
public int BlogId { get; set; }
public string Url { get; set; }
public List<Post> Posts { get; set; }
}
public class Post
{
public int PostId { get; set; }
public string Title { get; set; }
public string Content { get; set; }
public Blog Blog { get; set; }
}
您可以使用数据批注来配置依赖项和主体实体上的导航属性如何配对。 这通常在两个实体类型之间存在多个导航属性对时执行。
public class Post
{
public int PostId { get; set; }
public string Title { get; set; }
public string Content { get; set; }
public int AuthorUserId { get; set; }
public User Author { get; set; }
public int ContributorUserId { get; set; }
public User Contributor { get; set; }
}
public class User
{
public string UserId { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
[InverseProperty("Author")]
public List<Post> AuthoredPosts { get; set; }
[InverseProperty("Contributor")]
public List<Post> ContributedToPosts { get; set; }
}
备注
只能在依赖实体上的属性上使用 [Required] 来影响关系的 requiredness。 [必需] 在主体实体的导航中通常会忽略,但这可能会导致实体成为依赖实体。
备注
数据批注 [ForeignKey]
和 [InverseProperty]
在命名空间中可用 System.ComponentModel.DataAnnotations.Schema
。 [Required]
在 System.ComponentModel.DataAnnotations
命名空间中可用。
单个导航属性Single navigation property
如果只有一个导航属性,则和的无参数重载 WithOne
WithMany
。 这表示在概念上,关系的另一端有一个引用或集合,但实体类中不包含导航属性。
class MyContext : DbContext
{
public DbSet<Blog> Blogs { get; set; }
public DbSet<Post> Posts { get; set; }
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.Entity<Blog>()
.HasMany(b => b.Posts)
.WithOne();
}
}
public class Blog
{
public int BlogId { get; set; }
public string Url { get; set; }
public List<Post> Posts { get; set; }
}
public class Post
{
public int PostId { get; set; }
public string Title { get; set; }
public string Content { get; set; }
}
配置导航属性Configuring navigation properties
创建导航属性后,你可能需要对其进行进一步配置。 在 EFCore 5.0 中添加了新的流畅 API,以允许执行该配置。
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.Entity<Blog>()
.HasMany(b => b.Posts)
.WithOne();
modelBuilder.Entity<Blog>()
.Navigation(b => b.Posts)
.UsePropertyAccessMode(PropertyAccessMode.Property);
}
备注
此调用不能用于创建导航属性。 它仅用于配置导航属性,该属性以前是通过定义关系或从约定创建的。
外键Foreign key
您可以使用熟知的 API 来配置应用作给定关系的外键属性的属性:
class MyContext : DbContext
{
public DbSet<Blog> Blogs { get; set; }
public DbSet<Post> Posts { get; set; }
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.Entity<Post>()
.HasOne(p => p.Blog)
.WithMany(b => b.Posts)
.HasForeignKey(p => p.BlogForeignKey);
}
}
public class Blog
{
public int BlogId { get; set; }
public string Url { get; set; }
public List<Post> Posts { get; set; }
}
public class Post
{
public int PostId { get; set; }
public string Title { get; set; }
public string Content { get; set; }
public int BlogForeignKey { get; set; }
public Blog Blog { get; set; }
}
您可以使用熟知的 API 来配置哪些属性应用作给定关系的复合外键属性:
class MyContext : DbContext
{
public DbSet<Car> Cars { get; set; }
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.Entity<Car>()
.HasKey(c => new { c.State, c.LicensePlate });
modelBuilder.Entity<RecordOfSale>()
.HasOne(s => s.Car)
.WithMany(c => c.SaleHistory)
.HasForeignKey(s => new { s.CarState, s.CarLicensePlate });
}
}
public class Car
{
public string State { get; set; }
public string LicensePlate { get; set; }
public string Make { get; set; }
public string Model { get; set; }
public List<RecordOfSale> SaleHistory { get; set; }
}
public class RecordOfSale
{
public int RecordOfSaleId { get; set; }
public DateTime DateSold { get; set; }
public decimal Price { get; set; }
public string CarState { get; set; }
public string CarLicensePlate { get; set; }
public Car Car { get; set; }
}
您可以使用数据批注来配置应用作给定关系的外键属性的属性。 通常,当不按约定发现外键属性时,会执行此操作:
public class Blog
{
public int BlogId { get; set; }
public string Url { get; set; }
public List<Post> Posts { get; set; }
}
public class Post
{
public int PostId { get; set; }
public string Title { get; set; }
public string Content { get; set; }
public int BlogForeignKey { get; set; }
[ForeignKey("BlogForeignKey")]
public Blog Blog { get; set; }
}
提示
[ForeignKey]
批注可放置在关系中的任一导航属性上。 它不需要在依赖实体类中定位导航属性。
备注
[ForeignKey]
在导航属性上使用指定的属性不需要存在于依赖类型上。 在这种情况下,将使用指定的名称创建阴影外键。
影子外键Shadow foreign key
您可以使用的字符串重载将 HasForeignKey(...)
影子属性配置为外键(有关详细信息,请参阅影子属性)。 建议先将影子属性显式添加到模型,然后再将其用作外键(如下所示)。
class MyContext : DbContext
{
public DbSet<Blog> Blogs { get; set; }
public DbSet<Post> Posts { get; set; }
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
// Add the shadow property to the model
modelBuilder.Entity<Post>()
.Property<int>("BlogForeignKey");
// Use the shadow property as a foreign key
modelBuilder.Entity<Post>()
.HasOne(p => p.Blog)
.WithMany(b => b.Posts)
.HasForeignKey("BlogForeignKey");
}
}
public class Blog
{
public int BlogId { get; set; }
public string Url { get; set; }
public List<Post> Posts { get; set; }
}
public class Post
{
public int PostId { get; set; }
public string Title { get; set; }
public string Content { get; set; }
public Blog Blog { get; set; }
}
Foreign key 约束名称Foreign key constraint name
按照约定,在面向关系数据库时,外键约束命名为 FK_ 。 对于复合外键, 将成为外键属性名称的下划线分隔列表。
你还可以配置约束名称,如下所示:
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.Entity<Post>()
.HasOne(p => p.Blog)
.WithMany(b => b.Posts)
.HasForeignKey(p => p.BlogId)
.HasConstraintName("ForeignKey_Post_Blog");
}
无导航属性Without navigation property
不一定需要提供导航属性。 您可以直接在关系的一端提供外键。
class MyContext : DbContext
{
public DbSet<Blog> Blogs { get; set; }
public DbSet<Post> Posts { get; set; }
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.Entity<Post>()
.HasOne<Blog>()
.WithMany()
.HasForeignKey(p => p.BlogId);
}
}
public class Blog
{
public int BlogId { get; set; }
public string Url { get; set; }
}
public class Post
{
public int PostId { get; set; }
public string Title { get; set; }
public string Content { get; set; }
public int BlogId { get; set; }
}
主体密钥Principal key
如果你希望外键引用主键之外的属性,则可以使用熟知的 API 来配置关系的主体键属性。 配置为主体密钥的属性将自动设置为备用密钥。
class MyContext : DbContext
{
public DbSet<Car> Cars { get; set; }
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.Entity<RecordOfSale>()
.HasOne(s => s.Car)
.WithMany(c => c.SaleHistory)
.HasForeignKey(s => s.CarLicensePlate)
.HasPrincipalKey(c => c.LicensePlate);
}
}
public class Car
{
public int CarId { get; set; }
public string LicensePlate { get; set; }
public string Make { get; set; }
public string Model { get; set; }
public List<RecordOfSale> SaleHistory { get; set; }
}
public class RecordOfSale
{
public int RecordOfSaleId { get; set; }
public DateTime DateSold { get; set; }
public decimal Price { get; set; }
public string CarLicensePlate { get; set; }
public Car Car { get; set; }
}
class MyContext : DbContext
{
public DbSet<Car> Cars { get; set; }
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.Entity<RecordOfSale>()
.HasOne(s => s.Car)
.WithMany(c => c.SaleHistory)
.HasForeignKey(s => new { s.CarState, s.CarLicensePlate })
.HasPrincipalKey(c => new { c.State, c.LicensePlate });
}
}
public class Car
{
public int CarId { get; set; }
public string State { get; set; }
public string LicensePlate { get; set; }
public string Make { get; set; }
public string Model { get; set; }
public List<RecordOfSale> SaleHistory { get; set; }
}
public class RecordOfSale
{
public int RecordOfSaleId { get; set; }
public DateTime DateSold { get; set; }
public decimal Price { get; set; }
public string CarState { get; set; }
public string CarLicensePlate { get; set; }
public Car Car { get; set; }
}
警告
指定主体键属性的顺序必须与为外键指定这些属性的顺序一致。
必需和可选的关系Required and optional relationships
您可以使用熟知的 API 来配置关系是必需的还是可选的。 最终,这会控制外键属性是必需的还是可选的。 当使用阴影状态外键时,这非常有用。 如果实体类中具有外键属性,则关系的 requiredness 取决于外键属性是必需还是可选(有关详细信息,请参阅必需和可选属性)。
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.Entity<Post>()
.HasOne(p => p.Blog)
.WithMany(b => b.Posts)
.IsRequired();
}
备注
IsRequired(false)
如果未配置,则调用还会使外键属性为可选。
级联删除Cascade delete
您可以使用熟知的 API 显式配置给定关系的级联删除行为。
有关每个选项的详细讨论,请参阅级联删除。
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.Entity<Post>()
.HasOne(p => p.Blog)
.WithMany(b => b.Posts)
.OnDelete(DeleteBehavior.Cascade);
}
其他关系模式Other relationship patterns
一对一One-to-one
一对多关系在两侧都有一个引用导航属性。 它们遵循与一对多关系相同的约定,但在外键属性上引入了唯一索引,以确保只有一个依赖项与每个主体相关。
public class Blog
{
public int BlogId { get; set; }
public string Url { get; set; }
public BlogImage BlogImage { get; set; }
}
public class BlogImage
{
public int BlogImageId { get; set; }
public byte[] Image { get; set; }
public string Caption { get; set; }
public int BlogId { get; set; }
public Blog Blog { get; set; }
}
备注
EF 会根据其检测外键属性的能力,选择其中一个实体作为依赖项。 如果选择了错误的实体作为依赖项,则可以使用熟知的 API 来更正此问题。
使用 “流畅” API 配置关系时,请使用 HasOne
和 WithOne
方法。
配置外键时,需要指定依赖实体类型-请注意以下列表中提供的泛型参数 HasForeignKey
。 在一对多关系中,可以清楚地表明具有引用导航的实体是依赖项,并且具有集合的实体是主体。 但这并不是一对一的关系,因此需要显式定义它。
class MyContext : DbContext
{
public DbSet<Blog> Blogs { get; set; }
public DbSet<BlogImage> BlogImages { get; set; }
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.Entity<Blog>()
.HasOne(b => b.BlogImage)
.WithOne(i => i.Blog)
.HasForeignKey<BlogImage>(b => b.BlogForeignKey);
}
}
public class Blog
{
public int BlogId { get; set; }
public string Url { get; set; }
public BlogImage BlogImage { get; set; }
}
public class BlogImage
{
public int BlogImageId { get; set; }
public byte[] Image { get; set; }
public string Caption { get; set; }
public int BlogForeignKey { get; set; }
public Blog Blog { get; set; }
}
多对多Many-to-many
目前尚不支持多对多关系,没有实体类来表示联接表。 但是,您可以通过包含联接表的实体类并映射两个不同的一对多关系,来表示多对多关系。
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; }
}