您好,登錄后才能下訂單哦!
本文小編為大家詳細介紹“ASP.NET Core如何使用EF為關系數(shù)據(jù)庫建?!保瑑?nèi)容詳細,步驟清晰,細節(jié)處理妥當,希望這篇“ASP.NET Core如何使用EF為關系數(shù)據(jù)庫建?!蔽恼履軒椭蠹医鉀Q疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。
一般而言,本部分中的配置適用于關系數(shù)據(jù)庫。安裝關系數(shù)據(jù)庫提供程序時,此處顯示的變?yōu)榭捎脭U展方法(原因在于共享的Microsoft.EntityFrameworkCore.Relational包)。
表映射標識在數(shù)據(jù)庫中哪張表應該進行內(nèi)容查詢和保存操作。
按照約定,每個實體將設置為映射到名稱與DbSet<TEntity> 屬性(公開派生上下文中的實體)相同的表中。如果給定DbSet<TEntity>實體中不包含,則使用類名稱。
可以使用數(shù)據(jù)注釋來配置類型映射表。
[Table("blogs")] public class Blog { public int BlogId { get; set; } public string Url { get; set; } }
你還可以指定表所屬的架構(數(shù)據(jù)庫)。
[Table("blogs", Schema = "blogging")] public class Blog { public int BlogId { get; set; } public string Url { get; set; } }
你可以使用熟知的API來配置類型映射到的表。
class MyContext : DbContext { public DbSet<Blog> Blogs { get; set; } protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.Entity<Blog>() .ToTable("blogs"); } } public class Blog { public int BlogId { get; set; } public string Url { get; set; } }
你還可以指定表所屬的架構(數(shù)據(jù)庫)。
modelBuilder.Entity<Blog>().ToTable("blogs", schema: "blogging");
列映射標識在數(shù)據(jù)庫中應從哪些列數(shù)據(jù)中進行查詢和保存。
按照約定,每個屬性將會設置為映射到與屬性具有相同名稱的列。
可以使用數(shù)據(jù)注釋來配置屬性映射到的那一列。
namespace EFModeling.DataAnnotations.Relational.Column { class MyContext : DbContext { public DbSet<Blog> Blogs { get; set; } } public class Blog { [Column("blog_id")] public int BlogId { get; set; } public string Url { get; set; } } }
您可以使用熟知的API來配置屬性映射到的列。
namespace EFModeling.FluentAPI.Relational.Column { class MyContext : DbContext { public DbSet<Blog> Blogs { get; set; } protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.Entity<Blog>() .Property(b => b.BlogId) .HasColumnName("blog_id"); } } public class Blog { public int BlogId { get; set; } public string Url { get; set; } } }
數(shù)據(jù)類型是指屬性所映射到的列的數(shù)據(jù)庫特定類型。
按照約定,數(shù)據(jù)庫提供程序基于屬性的.NET類型選擇數(shù)據(jù)類型。它還會考慮其他元數(shù)據(jù),如配置的最大長度、屬性是否是主鍵的一部分等。例如,SQL Server的DateTime、nvarchar(max) 用作鍵的屬性。
您可以使用數(shù)據(jù)注釋為列指定精確的數(shù)據(jù)類型。例如,下面的代碼將Url配置為一個非unicode字符串,其最大200長度。Rating為5至2小數(shù)位。
public class Blog { public int BlogId { get; set; } [Column(TypeName = "varchar(200)")] public string Url { get; set; } [Column(TypeName = "decimal(5, 2)")] public decimal Rating { get; set; } }
你還可以使用熟知的API為列指定相同的數(shù)據(jù)類型。
class MyContext : DbContext { public DbSet<Blog> Blogs { get; set; } protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.Entity<Blog>(eb => { eb.Property(b => b.Url).HasColumnType("varchar(200)"); eb.Property(b => b.Rating).HasColumnType("decimal(5, 2)"); }); } } public class Blog { public int BlogId { get; set; } public string Url { get; set; } public decimal Rating { get; set; } }
為每個實體類型的鍵引入primary key(主鍵)約束。
按照約定,會將數(shù)據(jù)庫中的主鍵命名為PK_<type name>。
不能使用數(shù)據(jù)批注配置主鍵的關系數(shù)據(jù)庫的特定方面。
你可以使用API在數(shù)據(jù)庫中配置primary key(主鍵)約束的名稱。
class MyContext : DbContext { public DbSet<Blog> Blogs { get; set; } protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.Entity<Blog>() .HasKey(b => b.BlogId) .HasName("PrimaryKey_BlogId"); } } public class Blog { public int BlogId { get; set; } public string Url { get; set; } }
如果沒有為該對象顯式配置架構,則默認架構為將在其中創(chuàng)建對象的數(shù)據(jù)庫架構。
按照約定,數(shù)據(jù)庫提供程序?qū)⑦x擇最適合的默認架構。例如,Microsoft SQL Server將使用dbo架構,而且sqlite將不使用架構(因為sqlite不支持架構)。
不能使用數(shù)據(jù)批注設置默認架構。
可以使用API來指定默認架構。
class MyContext : DbContext { public DbSet<Blog> Blogs { get; set; } protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.HasDefaultSchema("blogging"); } }
如果插入新行,但沒有為該列指定值,則列的默認值為要插入的值。
按照約定,未配置默認值。
不能使用數(shù)據(jù)批注設置默認值。
你可以使用API指定屬性的默認值。
class MyContext : DbContext { public DbSet<Blog> Blogs { get; set; } protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.Entity<Blog>() .Property(b => b.Rating) .HasDefaultValue(3); } } public class Blog { public int BlogId { get; set; } public string Url { get; set; } public int Rating { get; set; } }
還可以指定用于計算默認值的SQL片段。
class MyContext : DbContext { public DbSet<Blog> Blogs { get; set; } protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.Entity<Blog>() .Property(b => b.Created) .HasDefaultValueSql("getdate()"); } } public class Blog { public int BlogId { get; set; } public string Url { get; set; } public DateTime Created { get; set; } }
關系數(shù)據(jù)庫中的索引映射到與實體框架核心中的索引相同的概念。
按照約定,索引命名為IX_<type name>_<property name>。對于復合索引<property name>,將成為以下劃線分隔的屬性名稱列表。
不能使用數(shù)據(jù)批注配置索引。
你可以使用熟知的API來配置索引的名稱。
class MyContext : DbContext { public DbSet<Blog> Blogs { get; set; } protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.Entity<Blog>() .HasIndex(b => b.Url) .HasName("Index_Url"); } } public class Blog { public int BlogId { get; set; } public string Url { get; set; } }
你還可以指定篩選器。
class MyContext : DbContext { public DbSet<Blog> Blogs { get; set; } protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.Entity<Blog>() .HasIndex(b => b.Url) .HasFilter("[Url] IS NOT NULL"); } } public class Blog { public int BlogId { get; set; } public string Url { get; set; } }
使用SQL Server提供程序EF為唯一索引中包含的所有可以為null的列添加"IS NOT NULL"篩選器。若要重寫此約定,可以null提供一個值。
class MyContext : DbContext { public DbSet<Blog> Blogs { get; set; } protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.Entity<Blog>() .HasIndex(b => b.Url) .IsUnique() .HasFilter(null); } } public class Blog { public int BlogId { get; set; } public string Url { get; set; } }
在SQL Server索引中包含列,當查詢中的所有列都作為鍵列或非鍵列包含在索引中時,可以通過包含列配置索引以顯著提高查詢性能。
class MyContext : DbContext { public DbSet<Post> Posts { get; set; } protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.Entity<Post>() .HasIndex(p => p.Url) .IncludeProperties(p => new { p.Title, p.PublishedOn }) .HasName("Index_Url_Include_Title_PublishedOn"); } } public class Post { public int PostId { get; set; } public string Url { get; set; } public string Title { get; set; } public DateTime PublishedOn { get; set; } }
讀到這里,這篇“ASP.NET Core如何使用EF為關系數(shù)據(jù)庫建?!蔽恼乱呀?jīng)介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內(nèi)容的文章,歡迎關注億速云行業(yè)資訊頻道。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。