在EF 6.0中将FULLTEXT INDEX添加到表中的列的标准方法是什么?
我已经研究了DbContext.OnModelCreating(...),但是下面的代码似乎不支持FULLTEXT索引:
modelBuilder.Entity<Table>().Property(x => x.Column).HasColumnAnnotation(IndexAnnotation.AnnotationName, new IndexAnnotation(new IndexAttribute() { ... }));