我首先使用EF 5.0代码,通过PM控制台使用自动迁移。
我正在尝试将第4次迁移应用于项目,并且基于约定的链接表命名导致它们被删除并使用不同的名称重新创建。在任何先前的迁移过程中都没有发生这种情况。
示例:
我有2个用户和网站类。
InitialCreate Migration
按惯例创建了一个名为“UserSites”的链接表。
CreateTable(
"dbo.UserSites",
c => new
{
User_Id = c.Guid(nullable: false),
Site_Id = c.Guid(nullable: false),
})
.PrimaryKey(t => new { t.User_Id, t.Site_Id })
.ForeignKey("dbo.Users", t => t.User_Id, cascadeDelete: true)
.ForeignKey("dbo.Sites", t => t.Site_Id, cascadeDelete: true)
.Index(t => t.User_Id)
.Index(t => t.Site_Id);
一切都运作良好。
跳到今天:
第四次迁移
这会删除UserSites链接表并创建SiteUsers链接表。
显然不理想!
public override void Up()
{
DropForeignKey("dbo.UserSites", "User_Id", "dbo.Users");
DropForeignKey("dbo.UserSites", "Site_Id", "dbo.Sites");
DropIndex("dbo.UserSites", new[] { "User_Id" });
DropIndex("dbo.UserSites", new[] { "Site_Id" });
CreateTable(
"dbo.SiteUsers",
c => new
{
Site_Id = c.Guid(nullable: false),
User_Id = c.Guid(nullable: false),
})
.PrimaryKey(t => new { t.Site_Id, t.User_Id })
.ForeignKey("dbo.Sites", t => t.Site_Id, cascadeDelete: true)
.ForeignKey("dbo.Users", t => t.User_Id, cascadeDelete: true)
.Index(t => t.Site_Id)
.Index(t => t.User_Id);
DropTable("dbo.UserSites");
我无法解释这一点。
自第一次实施以来,这两个类都没有改变......我认为如果我应用这个,我将遭受数据丢失。
所以对于问题:
我可以从迁移脚本中删除此代码并继续使用现有结构吗?
是否有可能导致此问题的问题?
非常感谢任何/所有帮助!
编辑:
我已经简单地定义了如下的类,并允许按照约定构建模型。我已经更改了dbcontext的命名空间,但这就是全部!让我感到困惑。
public class User
{
public virtual ICollection<Site> Sites { get; set; }
}
public class Site
{
public virtual ICollection<User> Users { get; set; }
}
答案 0 :(得分:0)
这是一个奇怪的情况。你在DbContext
改变了什么吗?如何在班级中声明Sites
和Users
属性?
我认为您应该明确地向您的数据库上下文添加多对多关系,如下所示:
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
base.OnModelCreating(modelBuilder);
modelBuilder.Entity<User>()
.HasMany<Sites>(u => u.Sites)
.WithMany(e => e.Users)
.Map(
m =>
{
m.MapLeftKey("User_Id");
m.MapRightKey("Site_Id");
m.ToTable("UserSites");
});
//for prevent error 'The referential relationship will result in a cyclical reference that is not allowed'
modelBuilder.Entity<Sites>()
.HasRequired(s => s.User)
.WithMany()
.WillCascadeOnDelete(false);
}
然后删除第4次迁移并尝试重新添加
如果您删除了迁移代码,则会捕获导航错误,例如外键问题,表名称不正确等。