问题描述
我已经将 EntityFramework 6 的项目实现到 EntityFramework Core 3.1 中。在 EF6 中,我们使用 HasColumnAnnotation() 方法在模型中为用于存储属性的数据库列设置注释。
Sample.cs
private void CreateCompositeUnique(DbModelBuilder modelBuilder,string indexName)
{
modelBuilder
.Entity<Web>()
.Property(x=>x.Url)
.HasColumnAnnotation(IndexAnnotation.AnnotationName,new IndexAnnotation(new IndexAttribute(indexName) { IsUnique = true }));
}
Refactor many HasColumnAnnotation and IndexAnnotation usages in my schema definition --> 链接建议使用 HasIndex() 方法。但仍然困惑它是否正确?
而且我还必须使用 Roslyn API 将 HasColumnAnnotation() 迁移到 HasIndex()。
请澄清转换,并为 Roslyn 部分提供解决方案,如何做同样的事情。
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)