EFCodeFirst关系映射约定
EFCodeFirst关系映射约定
默认多重关系的一些约定规则:
1.一对多关系
两个类中分别包含一个引用和一个集合属性。
两个类中一个类包含另一个类的引用属性。
两个类中一个类包含另一个类的集合属性。
2.多对多关系
两个类分别包含对方的一个集合属性。
3.一对一关系
两个类分别包含对方的一个引用属性。
1.外键列名默认约定
3种外键列名的约定方式是:
- [Target Type Key Name],[目标类型的键名]
- [Target Type Name] + [Target Type Key Name],[目标类型名称]+[目标类型键名称]
- [Navigation Property Name] + [Target Type Key Name],[引用属性名称]+[目标类型键名称]
3种不同的外键名称命名之间存在优先级:
[目标类型的键名] > [引用属性名称]+[目标类型键名称] > [目标类型名称]+[目标类型键名称]。
1.[目标类型的键名]
- 两个类中分别包含一个引用和一个集合属性的一对多种。
- 启用级联删除功能。
2.[目标类型名称]+[目标类型键名称]
- 两个类中一个类包含另一个类的集合属性。
3.[引用属性名称]+[目标类型键名称]
2.一对多关系
修改外键命名约定,自定义外键列名
Data Annotations方式
- public int CatID { get; set; }
- [ForeignKey("CatID")]
- public virtual Category Category { get; set; }
- //或者
- [ForeignKey("Category")]
- public int CatID { get; set; }
- public virtual Category Category { get; set; }
Fluent API方式
- 两个实体类之间的关系,可以两个类中均添加关系映射配置,也可以只对其中任意一个实体类添加关系映射配置。
- 建议将实体类之间关系映射配置在包含外键的类中
- modelBuilder.Entity<Product>()
- .HasRequired(t => t.Category)
- .WithMany(t => t.Products)
- .HasForeignKey(d => d.CatID);
- 一对多关系关系生成的外键引用约束默认是有级联删除的,可以通过以下方式禁用Category与Product之间的级联删除。
- protected override void OnModelCreating(DbModelBuilder modelBuilder)
- {
- modelBuilder.Entity<Product>()
- .HasRequired(t => t.Category)
- .WithMany(t => t.Products)
- .HasForeignKey(d => d.CatID)
- .WillCascadeOnDelete(false);
- }
- //也可以在Entity Framework Code First生成的全部表中都统一设置禁用一对多级联删除。
- protected override void OnModelCreating(DbModelBuilder modelBuilder)
- {
- modelBuilder.Conventions.Remove<OneToManyCascadeDeleteConvention>();
- }
- 可以支持外键列名自定义的,但在实际的项目中,更多的外键列名称还是与所引用表的主键列名相同。
3.一对一关系
- 两个表均有各自的主键,但要看哪个表的主键同时作为外键引用另一个表的主键。
Data Annotations方式
UserProfile表中的主键ProfileID同时也作为外键引用User表中的主键UserID。
User为主表
- public partial class User
- {
- [Key]
- public int UserID { get; set; }
- public string UserName { get; set; }
- public string Password { get; set; }
- public Nullable<bool> IsValid { get; set; }
- public virtual UserProfile UserProfile { get; set; }
- }
- ------------------------------------------------------------------------------------------
- public partial class UserProfile
- {
- [Key]
- [ForeignKey("User")]
- public int ProfileID { get; set; }
- public string Name { get; set; }
- public Nullable<bool> Sex { get; set; }
- public Nullable<DateTime> Birthday { get; set; }
- public string Email { get; set; }
- public string Telephone { get; set; }
- public string Mobilephone { get; set; }
- public string Address { get; set; }
- public Nullable<DateTime> CreateDate { get; set; }
- public virtual User User { get; set; }
- }
表User主键UserID将同时作为外键引用UserProfile表的主键ProfileID。
UserProfile为主表
- public partial class User
- {
- [Key]
- [ForeignKey("UserProfile")]
- public int UserID { get; set; }
- public string UserName { get; set; }
- public string Password { get; set; }
- public Nullable<bool> IsValid { get; set; }
- public virtual UserProfile UserProfile { get; set; }
- }
- ------------------------------------------------------------------------------------------
- public partial class UserProfile
- {
- [Key]
- public int ProfileID { get; set; }
- public string Name { get; set; }
- public Nullable<bool> Sex { get; set; }
- public Nullable<DateTime> Birthday { get; set; }
- public string Email { get; set; }
- public string Telephone { get; set; }
- public string Mobilephone { get; set; }
- public string Address { get; set; }
- public Nullable<DateTime> CreateDate { get; set; }
- public virtual User User { get; set; }
- }
Fluent API方式
UserProfile表中的主键ProfileID同时也作为外键引用User表中的主键UserID。
User为主表
- public partial class User
- {
- public int UserID { get; set; }
- public string UserName { get; set; }
- public string Password { get; set; }
- public Nullable<bool> IsValid { get; set; }
- public virtual UserProfile UserProfile { get; set; }
- }
- ------------------------------------------------------------------------------------------
- public class UserMap : EntityTypeConfiguration<User>
- {
- public UserMap()
- {
- // Primary Key
- this.HasKey(t => t.UserID);
- // Properties
- this.Property(t => t.UserName)
- .HasMaxLength(50);
- this.Property(t => t.Password)
- .HasMaxLength(100);
- // Table & Column Mappings
- this.ToTable("User");
- this.Property(t => t.UserID).HasColumnName("UserID");
- this.Property(t => t.UserName).HasColumnName("UserName");
- this.Property(t => t.Password).HasColumnName("Password");
- this.Property(t => t.IsValid).HasColumnName("IsValid");
- }
- }
- ------------------------------------------------------------------------------------------
- public partial class UserProfile
- {
- public int UserID { get; set; }
- public string Name { get; set; }
- public Nullable<bool> Sex { get; set; }
- public Nullable<DateTime> Birthday { get; set; }
- public string Email { get; set; }
- public string Telephone { get; set; }
- public string Mobilephone { get; set; }
- public string Address { get; set; }
- public Nullable<DateTime> CreateDate { get; set; }
- public virtual User User { get; set; }
- }
- ------------------------------------------------------------------------------------------
- public class UserProfileMap : EntityTypeConfiguration<UserProfile>
- {
- public UserProfileMap()
- {
- // Primary Key
- this.HasKey(t => t.UserID);
- // Properties
- this.Property(t => t.UserID)
- .HasDatabaseGeneratedOption(DatabaseGeneratedOption.None);
- this.Property(t => t.Name)
- .IsRequired()
- .HasMaxLength(50);
- this.Property(t => t.Email)
- .IsRequired()
- .HasMaxLength(100);
- this.Property(t => t.Telephone)
- .HasMaxLength(50);
- this.Property(t => t.Mobilephone)
- .HasMaxLength(20);
- this.Property(t => t.Address)
- .HasMaxLength(200);
- // Table & Column Mappings
- this.ToTable("UserProfile");
- this.Property(t => t.UserID).HasColumnName("UserID");
- this.Property(t => t.Name).HasColumnName("Name");
- this.Property(t => t.Sex).HasColumnName("Sex");
- this.Property(t => t.Birthday).HasColumnName("Birthday");
- this.Property(t => t.Email).HasColumnName("Email");
- this.Property(t => t.Telephone).HasColumnName("Telephone");
- this.Property(t => t.Mobilephone).HasColumnName("Mobilephone");
- this.Property(t => t.Address).HasColumnName("Address");
- this.Property(t => t.CreateDate).HasColumnName("CreateDate");
- // Relationships
- this.HasRequired(t => t.User)
- .WithRequiredDependent(t => t.UserProfile);
- }
- }
表User主键UserID将同时作为外键引用UserProfile表的主键ProfileID。
UserProfile为主表
- public class UserProfileMap : EntityTypeConfiguration<UserProfile>
- {
- public UserProfileMap()
- {
- // Primary Key
- this.HasKey(t => t.UserID);
- // Properties
- this.Property(t => t.UserID)
- .HasDatabaseGeneratedOption(DatabaseGeneratedOption.None);
- this.Property(t => t.Name)
- .IsRequired()
- .HasMaxLength(50);
- this.Property(t => t.Email)
- .IsRequired()
- .HasMaxLength(100);
- this.Property(t => t.Telephone)
- .HasMaxLength(50);
- this.Property(t => t.Mobilephone)
- .HasMaxLength(20);
- this.Property(t => t.Address)
- .HasMaxLength(200);
- // Table & Column Mappings
- this.ToTable("UserProfile");
- this.Property(t => t.UserID).HasColumnName("UserID");
- this.Property(t => t.Name).HasColumnName("Name");
- this.Property(t => t.Sex).HasColumnName("Sex");
- this.Property(t => t.Birthday).HasColumnName("Birthday");
- this.Property(t => t.Email).HasColumnName("Email");
- this.Property(t => t.Telephone).HasColumnName("Telephone");
- this.Property(t => t.Mobilephone).HasColumnName("Mobilephone");
- this.Property(t => t.Address).HasColumnName("Address");
- this.Property(t => t.CreateDate).HasColumnName("CreateDate");
- // Relationships
- this.HasRequired(t => t.User)
- .WithRequiredPrincipal(t => t.UserProfile);
- }
- }
4.多对多关系
- 除了生成实体类定义的属性表之外,还会生成一个中间表。用于体现两个实体表之间的多对多的关系。
- public partial class User
- {
- public int UserID { get; set; }
- public string UserName { get; set; }
- public string Password { get; set; }
- public Nullable<bool> IsValid { get; set; }
- public virtual ICollection<Role> Roles { get; set; }
- }
- public partial class Role
- {
- public Role()
- {
- this.Users = new List<User>();
- }
- public int RoleID { get; set; }
- public string RoleName { get; set; }
- public virtual ICollection<User> Users { get; set; }
- }
- 默认启用多对多的数据级联删除
- protected override void OnModelCreating(DbModelBuilder modelBuilder)
- {
- // 禁用多对多关系表的级联删除
- modelBuilder.Conventions.Remove<ManyToManyCascadeDeleteConvention>();
- }
Fluent API方式
- public partial class User
- {
- public int UserID { get; set; }
- public string UserName { get; set; }
- public string Password { get; set; }
- public Nullable<bool> IsValid { get; set; }
- public virtual ICollection<Role> Roles { get; set; }
- }
- ---------------------------------------------------------------------
- public class UserMap : EntityTypeConfiguration<User>
- {
- public UserMap()
- {
- // Primary Key
- this.HasKey(t => t.UserID);
- // Properties
- this.Property(t => t.UserName)
- .HasMaxLength(50);
- this.Property(t => t.Password)
- .HasMaxLength(100);
- // Table & Column Mappings
- this.ToTable("User");
- this.Property(t => t.UserID).HasColumnName("UserID");
- this.Property(t => t.UserName).HasColumnName("UserName");
- this.Property(t => t.Password).HasColumnName("Password");
- this.Property(t => t.IsValid).HasColumnName("IsValid");
- }
- }
- ----------------------------------------------------------------------------
- public partial class Role
- {
- public int RoleID { get; set; }
- public string RoleName { get; set; }
- public virtual ICollection<User> Users { get; set; }
- }
- -----------------------------------------------------------------------------
- public class RoleMap : EntityTypeConfiguration<Role>
- {
- public RoleMap()
- {
- // Primary Key
- this.HasKey(t => t.RoleID);
- // Properties
- this.Property(t => t.RoleName)
- .HasMaxLength(50);
- // Table & Column Mappings
- this.ToTable("Role");
- this.Property(t => t.RoleID).HasColumnName("RoleID");
- this.Property(t => t.RoleName).HasColumnName("RoleName");
- // Relationships
- this.HasMany(t => t.Users)
- .WithMany(t => t.Roles)
- .Map(m =>
- {
- m.ToTable("UserRole");
- m.MapLeftKey("RoleID");
- m.MapRightKey("UserID");
- });
- }
- }
5.一对多自反关系
Fluent API方式
- public class Category
- {
- public int CategoryID { get; set; }
- public int CategoryNo { get; set; }
- public string CategoryName { get; set; }
- public Nullable<int> ParentID { get; set; }
- public virtual Category Parent { get; set; }
- public virtual ICollection<Category> Children { get; set; }
- }
- ---------------------------------------------------------------------
- public class CategoryMap : EntityTypeConfiguration<Category>
- {
- public CategoryMap()
- {
- // Primary Key
- this.HasKey(t => t.CategoryID);
- // Properties
- this.Property(t => t.CategoryName)
- .IsRequired()
- .HasMaxLength(50);
- // Table & Column Mappings
- this.ToTable("Category");
- this.Property(t => t.CategoryID).HasColumnName("CategoryID");
- this.Property(t => t.CategoryNo).HasColumnName("CategoryNo");
- this.Property(t => t.CategoryName).HasColumnName("CategoryName");
- this.Property(t => t.ParentID).HasColumnName("ParentID");
- // Relationships
- this.HasOptional(t => t.Parent)
- .WithMany(t => t.Children)
- .HasForeignKey(d => d.ParentID);
- }
- }
6.多对多自反关系
Fluent API方式
- /// <summary>
- /// Family表多对多自反关系
- /// </summary>
- public partial class Family
- {
- public Family()
- {
- this.Parents = new List<Family>();
- this.Children = new List<Family>();
- }
- public int FamilyID { get; set; }
- public string Name { get; set; }
- public Nullable<bool> Sex { get; set; }
- public Nullable<System.DateTime> Birthday { get; set; }
- public virtual ICollection<Family> Parents { get; set; }
- public virtual ICollection<Family> Children { get; set; }
- }
- ---------------------------------------------------------------------
- public class FamilyMap : EntityTypeConfiguration<Family>
- {
- public FamilyMap()
- {
- // Primary Key
- this.HasKey(t => t.FamilyID);
- // Properties
- this.Property(t => t.Name)
- .HasMaxLength(50);
- // Table & Column Mappings
- this.ToTable("Family");
- this.Property(t => t.FamilyID).HasColumnName("FamilyID");
- this.Property(t => t.Name).HasColumnName("Name");
- this.Property(t => t.Sex).HasColumnName("Sex");
- this.Property(t => t.Birthday).HasColumnName("Birthday");
- // Relationships
- this.HasMany(t => t.Parents)
- .WithMany(t => t.Children)
- .Map(m =>
- {
- m.ToTable("FamilyRelationship");
- m.MapLeftKey("ParentID");
- m.MapRightKey("ChildID");
- });
- }
- }
EFCodeFirst关系映射约定的更多相关文章
- EFCodeFirst属性映射约定
EFCodeFirst属性映射约定 EFCodeFirst 属性映射约定 CodeFirst与数据表之间得映射方式又两种:Data Annotation和Fluent API 默认约定: 表名为类名的 ...
- Entity Framework Code First关系映射约定
本篇随笔目录: 1.外键列名默认约定 2.一对多关系 3.一对一关系 4.多对多关系 5.一对多自反关系 6.多对多自反关系 在关系数据库中,不同表之间往往不是全部都单独存在,而是相互存在关联的.两个 ...
- Entity Framework Code First主外键关系映射约定
本篇随笔目录: 1.外键列名默认约定 2.一对多关系 3.一对一关系 4.多对多关系 5.一对多自反关系 6.多对多自反关系 在关系数据库中,不同表之间往往不是全部都单独存在,而是相互存在关联的.两个 ...
- Entity Framework Code First关系映射约定【l转发】
本篇随笔目录: 1.外键列名默认约定 2.一对多关系 3.一对一关系 4.多对多关系 5.一对多自反关系 6.多对多自反关系 在关系数据库中,不同表之间往往不是全部都单独存在,而是相互存在关联的.两个 ...
- Entity Framework Code First属性映射约定
Entity Framework Code First与数据表之间的映射方式有两种实现:Data Annotation和Fluent API.本文中采用创建Product类为例来说明tity Fram ...
- EntityFramework 6.x和EntityFramework Core关系映射中导航属性必须是public?
前言 不知我们是否思考过一个问题,在关系映射中对于导航属性的访问修饰符是否一定必须为public呢?如果从未想过这个问题,那么我们接下来来探讨这个问题. EF 6.x和EF Core 何种情况下必须配 ...
- 【EF】Entity Framework实现属性映射约定
Entity Framework Code First属性映射约定中“约定”一词,在原文版中为“Convention”,翻译成约定或许有些不好理解,这也是网上比较大多数的翻译,我们就当这是Entity ...
- 补习知识:Entity Framework Code First属性映射约定
Entity Framework Code First与数据表之间的映射方式有两种实现:Data Annotation和Fluent API.本文中采用创建Product类为例来说明tity Fram ...
- 你所不知道的库存超限做法 服务器一般达到多少qps比较好[转] JAVA格物致知基础篇:你所不知道的返回码 深入了解EntityFramework Core 2.1延迟加载(Lazy Loading) EntityFramework 6.x和EntityFramework Core关系映射中导航属性必须是public? 藏在正则表达式里的陷阱 两道面试题,带你解析Java类加载机制
你所不知道的库存超限做法 在互联网企业中,限购的做法,多种多样,有的别出心裁,有的因循守旧,但是种种做法皆想达到的目的,无外乎几种,商品卖的完,系统抗的住,库存不超限.虽然短短数语,却有着说不完,道不 ...
随机推荐
- 一文弄懂-《Scalable IO In Java》
目录 一. <Scalable IO In Java> 是什么? 二. IO架构的演变历程 1. Classic Service Designs 经典服务模型 2. Event-drive ...
- A - 欧拉回路
欧拉回路是指不令笔离开纸面,可画过图中每条边仅一次,且可以回到起点的一条回路.现给定一个图,问是否存在欧拉回路? Input测试输入包含若干测试用例.每个测试用例的第1行给出两个正整数,分别是节点数N ...
- 2020牛客暑期多校训练营(第四场) C - Count New String (字符串,广义后缀自动机,序列自动机)
Count New String 题意: 定义字符串函数 \(f(S,x,y)(1\le x\le y\le n)\),返回一个长度为y-x+1的字符串,第 i 位是 \(max_{i=x...x+k ...
- lca讲解 && 例题 HDU - 4547
一. 最普通的找树中两个点x,y最近公共祖先: 在进行lca之前我们要先对这一颗树中的每一个点进行一个编号,像下图一样.这个编号就是tarjan算法中的dfn[]数组 这样的话我们可以在跑tarjan ...
- hdu3033 I love sneakers!
Problem Description After months of hard working, Iserlohn finally wins awesome amount of scholarshi ...
- JDK的卸载与安装
JDK的卸载 删除Java的安装目录 删除JAVA_HOME 删除path下关于Java的目录 DOS命令Java -version查看状态 JDK的安装 百度搜索jdk8,找到下载地址 同意协议 下 ...
- 二进制安装kubernetes(四) kube-scheduler组件安装
介绍资料转载地址:https://www.jianshu.com/p/c4c60ccda8d0 kube-scheduler在集群中的作用 kube-scheduler是以插件形式存在的组件,正因为以 ...
- java笔试中创建String对象的思考
题目是这样的下面那些生成新的String对象() A . String s = new String(); B . String s = new String("A"); C. ...
- Service Cloud 零基础(四)快速配置一个问卷调查(无开发)
本篇参考:https://trailhead.salesforce.com/content/learn/modules/survey-basics 我们在工作和生活中会经历过形形色色得调查问卷,有一些 ...
- codeforces 911D
D. Inversion Counting time limit per test 2 seconds memory limit per test 256 megabytes input standa ...