私はEntity Framework 6プロジェクトのWEB API 2で作業中で、update-databaseの後に問題があります。Entity Framework 6の 'update-database'の後のエラー
エラー:私は問題です見当がつかない
public class User
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int Id_User { get; set; }
public int Id_List_Products { get; set; }
public int Id_List_Black_Products { get; set; }
public string Login { get; set; }
public string Email { get; set; }
public string Password { get; set; }
public Boolean Social_Account { get; set; } // 1 - social account, 0 - normal account
public string URL_Avatar { get; set; } //URL of avatar thumbnail
public virtual List_Products List_Products { get; set; }
public virtual List_Black_Products List_Black_Products { get; set; }
}
:
public class Rate
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int Id_Rate { get; set; }
public int Id_User { get; set; }
public int Id_Recipe { get; set; }
public int Value_Rate { get; set; } //1-5
public virtual User User { get; set; }
public virtual Recipe Recipe { get; set; }
}
と私のUserクラス:
Introducing FOREIGN KEY constraint 'FK_dbo.Rates_dbo.Users_Id_User' on table 'Rates' may cause cycles or multiple cascade paths. Specify ON DELETE NO ACTION or ON UPDATE NO ACTION, or modify other FOREIGN KEY constraints.
Could not create constraint or index. See previous errors.
はここに私のレートクラスです。 ヒント?
あなたのConnectionString Modelクラスを投稿..あなたはどうするかを指定する必要があります 'modelBuilder' –
を含むものレートを削除すると、ユーザーに表示されます。ユーザー参照レートとレート参照ユーザーがある場合、カスケード削除によって問題が発生します。 –
[Entity Frameworkの可能な複製:「FOREIGN KEY制約がサイクルまたは複数のカスケードパスを引き起こす可能性がある」解決方法?](https://stackoverflow.com/questions/14489676/entity-framework-how-to-solve-foreign-キー制約 - 原因 - サイクル - または - マルチ) –