标签: c# entity-framework-6 ef-code-first data-annotations
有什么方法可以修改EF6用于生成实体类的模板;因此,对于数据库的每一列,我都可以向我的实体添加装饰器属性[MyAttribute(“ Test”))?
[Table("Meta")] public partial class Meta { [MyAttribute("GUID")] public string Guid {get; set;} }