我有一个POCO课程
public class Main
{
public int ExstraColumn{ get; set; }
}
public class User : Main
{
[Key]
public int Id { get; set; }
public int? Age { get; set; }
}
public class News : Main
{
[Key]
public int Id { get; set; }
public int? ReadCount { get; set; }
}
现在我希望实体框架只在用户中插入age列。但它提供了无效的列名ExstraColumn
如何告诉实体框架ExstraColumn字段只是特殊用法?
答案 0 :(得分:0)
您可以使用System.ComponentModel.DataAnnotations命名空间中的[NotMapped]
属性。
表示应从数据库中排除属性或类 映射。