他のポストから他のソリューションを試しましたが、いずれも機能しませんでした。依存型でナビゲーションプロパティが見つかりませんでした
public class Users
{
[Key]
public int userID { get; set; }
public string username { get; set; }
public string password { get; set; }
[ForeignKey("Groups")]
public virtual int groupID { get; set; }
}
は、私は何を逃した
public class Groups
{
[Key]
public int groupID { get; set; }
public string groupName { get; set; }
}
に関し?
あなたの 'Users'クラスは' public virtual Groups Group {get;}プロパティを必要とします。セット; } ' –
Oだから、それらを含むコレクションを置くだけでいいですか? –
オブジェクト( 'Users'には' Groups'が1つあります)またはその 'public ICollection Groups {get;セット; 'public' groupID {get; set;}'プロパティを削除する必要がある場合 –