EF 6 Code-First系列文章目錄:數據庫
當咱們不想實體類中的某個或者某些屬性,不要映射成數據庫中的列的時候。能夠使用NotMapped特性,標識NotMapped特性在屬性上面就好了。默認狀況下,EF爲實體的每一個屬性映射數據列。【必須包含get;和set;】。NotMapped特性重寫了這個約定。app
NotMapped Attribute: [NotMapped()]
ide
在上面的例子中,NotMapped特性應用在Student實體的Age屬性上了,因此EF將不會在Students表中包含Age列:測試
須要注意的是:EF不會爲沒有get;和set;的屬性,建立列。例以下面實體中的City和Age屬性,都不會映射在數據庫表的列中:ui
咱們本身動手驗證一下:spa
1.建立一個控制檯應用程序EFAnnotationNotMapped,並安裝EF.net
2.建立一個Student類翻譯
public class Student {
[Key] public int Key { get; set; } public string Name { get; set; } [NotMapped] public string Sex { get; set; } public int Age { get; set; } }
3.上下文類:3d
public class EFDbContext:DbContext { public EFDbContext() : base("name=Constr") { Database.SetInitializer<EFDbContext>(new DropCreateDatabaseAlways<EFDbContext>()); } public DbSet<Student> Students { get; set; } }
4.配置文件:
<connectionStrings>
<add name="Constr" connectionString="server=.;database=EFAnnotationNotMappedDB;uid=sa;pwd=Password_1" providerName="System.Data.SqlClient"/>
</connectionStrings>
5.測試代碼:
6.運行程序:
看看生成的數據庫:
能夠看到標註了NotMapped的Sex屬性沒有映射到數據表的列中。
來看看沒有get和set的屬性的狀況:修改Student實體
public class Student { private string _myschool; private string _myHobby; [Key] public int Key { get; set; } public string Name { get; set; } [NotMapped] public string Sex { get; set; } public int Age { get; set; } public string MySchool { get { return _myschool; } } public string MyHobby { set { _myHobby = value; } } }
運行程序:
看看數據庫:能夠看到MySchool和MyHobby沒有映射爲數據列。
再看看private屬性的狀況,添加一個private屬性Address
public class Student { private string _myschool; private string _myHobby; [Key] public int Key { get; set; } public string Name { get; set; } [NotMapped] public string Sex { get; set; } public int Age { get; set; } public string MySchool { get { return _myschool; } } public string MyHobby { set { _myHobby = value; } } private string Address { get; set; } }
運行程序:
看看數據庫:能夠看到Private屬性也不能映射到數據列。
總結:
1. NotMapped特性標識的屬性列,不會映射到數據庫
2.沒有get;set;的屬性不能映射到數據庫;
3.private屬性也不能映射到數據庫;
好了,你們有什麼不明白的能夠留言,我會一一回復,謝謝你們支持!