向EF生成的上下文模板CodeFirst现有数据库中添加自定义装饰器

时间:2018-10-03 20:26:54

标签: 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;}
}

0 个答案:

没有答案