可能重复:
Exclude a field/property from the database with Entity Framework 4 & Code-First
我正在使用EF 4代码优先。
是否有任何方法可以排除在数据库中创建列?
例如,我想要排除要创建的Zip
列。
public string Address { get; set; }
[StringLength(40)]
public string City { get; set; }
[StringLength(30)]
public string State { get; set; }
[StringLength(10)]
public string Zip { get; set; }
谢谢。
答案 0 :(得分:9)
您可以向要从数据库中排除的属性添加[NotMapped]
属性:
public string Address { get; set; }
[StringLength(40)]
public string City { get; set; }
[StringLength(30)]
public string State { get; set; }
[StringLength(10)]
[NotMapped]
public string Zip { get; set; }