2012-05-13 60 views

回答

39

accepted answersimilar question/answer,除了[NotMapped]你也可以使用流利的API指定:

protected override void OnModelCreating(DbModelBuilder modelBuilder) 
{ 
    modelBuilder.Entity<TheModelAffected>().Ignore(t => t.TheIgnoredProperty); 
    base.OnModelCreating(modelBuilder); 
} 
12

[NotMapped]是短版,如果你喜歡簡潔。當然,你還可以添加:

using System.ComponentModel.DataAnnotations.Schema; 

給你的班級。

相關問題