标签:迁移 index 清空 这一 contex mode text 成功 entity
在DbContext的OnModelCreating方法里增加一句modelBuilder.Entity<Address>().HasIndex(e => e.Name).IsUnique();
加了这一句后, 迁移时就会给Address的Name创建一个带唯一性验证的索引.
当然,如果这个列表里有重复的Name,迁移时会出错,要先把重复的数据清空后才能迁移成功
标签:迁移 index 清空 这一 contex mode text 成功 entity
原文地址:https://blog.51cto.com/twoxzi/2488016