如何解决在 EF Core 3.1 中替换 HasColumnAnnotation() 的最佳方法是什么
我已经将 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 举报,一经查实,本站将立刻删除。