为什么EF Core没有设置自定义注释?

时间:2017-02-25 18:27:01

标签: c# entity-framework-core

在DbContext中,我声明模型如下:

modelBuilder.Entity<FileStore>().Property(x => x.FileStoreId)
            .ValueGeneratedNever()
            .ForSqlServerHasDefaultValueSql("NewSequentialId()")
            .HasAnnotation("RowGuidColumn", true);

但添加迁移后,HasAnnotation(“RowGuidColumn”,true)不会向列添加任何注释:

 columns: table => new
            {
                FileStoreId = table.Column<Guid>(nullable: false, defaultValueSql: "NewSequentialId()"),
                CreationTime = table.Column<DateTimeOffset>(nullable: false),
            }

我最直接添加注释:

FileStoreId = table.Column<Guid>(nullable: false, defaultValueSql: "NewSequentialId()").**Annotation("RowGuidColumn", true)**

如何添加在Add-Migration中生成auto的注释?

1 个答案:

答案 0 :(得分:1)

提供程序指定将哪些模型注释复制/转换为迁移操作。要执行您要求的操作,您需要覆盖特定于提供程序的IMigrationsAnnotationProvider服务。

optionsBuilder.UseSqlServer(connectionString)
  .ReplaceService<SqlServerMigrationsAnnotationProvider, MyMigrationsAnnotationProvider>();

这是实施。

class MyMigrationsAnnotationProvider : SqlServerMigrationsAnnotationProvider
{
    public override IEnumerable<IAnnotation> For(IProperty property)
        => base.For(property)
            .Concat(property.GetAnnotations().Where(a => a.Name == "RowGuidColumn"));
}

从那里开始,您需要通过覆盖特定于提供者的IMigrationsSqlGenerator服务来将其转换为SQL。