EF5 と移行の使用。結合テーブル ProjectUser にプロパティを追加したいと考えています。以下のようにモデルをセットアップしましたが、移行によってプロパティが生成されません。感謝やアイデアは大歓迎です。
User {
public int UserGuid { get; set; }
....
public virtual IColllection<Project> Projects { get; set; }
}
Project {
public int ProjectId { get; set; }
....
public virual ICollection<User> Contacts { get; set; }
}
ProjectUser {
public int Project_ProjectId { get; set; }
public guid User_UserGuid { get; set; }
public string ProjectRoles { get; set; }
}