私はasp.net mvc を学習しています。私のプロジェクトに移行を追加すると、3つのメソッド(seed、upとdown)を持つ2つのファイルが追加されます。移行ファイルのupメソッドとdownメソッドの違い
私は上の方法と下の方法の違いは分かりません あなたは私のためにそれを説明できますか?
これは私の上下の方法です: これはどういう意味ですか?事前に
public override void Up()
{
AddColumn("dbo.Projets", "Description", c => c.String());
AddColumn("dbo.Projets", "UtilisateurID", c => c.Int(nullable: false));
AlterColumn("dbo.Projets", "etat", c => c.Int());
CreateIndex("dbo.Projets", "UtilisateurID");
AddForeignKey("dbo.Projets", "UtilisateurID", "dbo.Utilisateurs", "UtilisateurID", cascadeDelete: true);
}
public override void Down()
{
DropForeignKey("dbo.Projets", "UtilisateurID", "dbo.Utilisateurs");
DropIndex("dbo.Projets", new[] { "UtilisateurID" });
AlterColumn("dbo.Projets", "etat", c => c.String());
DropColumn("dbo.Projets", "UtilisateurID");
DropColumn("dbo.Projets", "Description");
}
おかげ
あなたの答えは非常に明確です!どうもありがとう ! – kokomoi