EF(EF Core)中的NotMappedAttribute(轉載)
阿新 • • 發佈:2018-12-26
NotMapped特性可以應用到EF實體類的屬性中,Code-First預設的約定,是為所有帶有get,和set屬性選擇器的屬性建立資料列。。
NotManpped特性打破了這個約定,你可以使用NotMapped特性到某個屬性上面,然後Code-First就不會為這個屬性在資料表中建立列了。
我們看一下下面的程式碼:
using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema;using System.Linq; using System.Text; using System.Threading.Tasks; namespace EF2 { [Table("StudentMaster",Schema="WaHaHa")] public class Student { [Key] [Column(Order=5)] public int StudentKey1 { get; set; } [Key] [Column(Order=6)]public int StudentKey2 { get; set; } [MaxLength(20)] [ConcurrencyCheck] [Required] [Column("SName",Order=1,TypeName="nvarchar")] public string StudentName { get; set; } [NotMapped()] public int? Age { get; set; }public int StandardRefId { get; set; } [ForeignKey("StandardRefId")] public virtual Standard Standard { get; set; } } }
注意到沒有,這個表裡面沒有Age列。
但是如果屬性,只有Get屬性訪問器,或者只有set屬性訪問器,那麼Ef Code-First就不會為它建立資料列了。
請看:
using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; namespace EF2 { [Table("StudentMaster",Schema="WaHaHa")] public class Student { [Key] [Column(Order=5)] public int StudentKey1 { get; set; } [Key] [Column(Order=6)] public int StudentKey2 { get; set; } [MaxLength(20)] [ConcurrencyCheck] [Required] [Column("SName",Order=1,TypeName="nvarchar")] public string StudentName { get; set; } [NotMapped()] public int? Age { get; set; } public int StandardRefId { get; set; } public string FirstName { get { return FirstName; } } public int myAge; public int MyAge { set { value = myAge; } } [ForeignKey("StandardRefId")] public virtual Standard Standard { get; set; } } }
得到的資料庫還是這個:
NotMappedAttribute無效解決辦法
可以通過NotMappedAttribute標記模型某個屬性可以使該屬性不必對映到資料庫。
public class Unicorn { public int Id { get; set; } [NotMapped] public string Name { get; set; } [Timestamp] public byte[] Version { get; set; } public int PrincessId { get; set; } // FK for Princess reference public virtual Princess Princess { get; set; } }
NotMapped無效的時候,在DbContext的OnModelCreating方法過載中實現
protected override void OnModelCreating(DbModelBuilder modelBuilder) { //不對映到資料庫中 modelBuilder.Entity<BlogArticle>().Ignore(p => p.Title); }
EF Core中Ignore方法的用法如下:
protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.Entity<BlogArticle>(entity => { //不對映到資料庫中 entity.Ignore(p => p.Title); }); }
轉載文章:
EF 解除屬性對映到資料庫中 NotMappedAttribute無效解決辦法