具有典型的实体类
public class MyTable {
public Guid Id {get;set;}
public string Name {get;set;}
}
EF生成如下内容:
CreateTable(
"dbo.MyTable",
c => new
{
Id = c.Guid(nullable: false),
Name = c.String(nullable: false, maxLength: 128),
})
.PrimaryKey(t => t.Id)
我想从接口
IMyInterface
继承一些实体类:public interface IMyEnterface {}
然后,我想覆盖默认的生成方式,以便任何实现
IMyInterface
的类的迁移自动如下所示: CreateTable(
"dbo.MyTable",
c => new
{
Id = c.Guid(nullable: false),
Name = c.String(nullable: false, maxLength: 128),
})
.PrimaryKey(t => t.Id)
Sql(@"EXEC sys.sp_addextendedproperty bla-bla-bla");
EF 6.2中是否有扩展点允许这样做?
最佳答案
使用Seed
方法更容易做到这一点:
var tables = context.GetType().GetProperties()
.Where(x =>
x.PropertyType.GenericTypeArguments
.Any(y => typeof(IMyEnterface).IsAssignableFrom(y))
);
foreach (var table in tables)
if(sp_NotExecutedYet(table))
context.Database
.ExecuteSqlCommand($"EXEC sys.sp_addextendedproperty {propertyNameFor(table)}");