并提及 StoreIgnoreAttribute 。我在EF6中找不到这个的实现。那么有一个数据注释可以忽略类中的某个属性被映射到表中的列吗?
答案 0 :(得分:3)
您可以使用NotMapped Annotation
public class Customer
{
public string FirstName {get;set;}
public string LastName {get;set;}
[NotMapped]
public string FullName { set; get; }
}