public partial class ALBUMS
{
public ALBUMS()
{
this.PHOTOS = new HashSet
public int ID_ALBUM { get; set; }
public string NAME { get; set; }
public virtual ICollection
public partial class PHOTOS
{
public PHOTOS()
{
this.ALBUMS = new HashSet
public int ID_PHOTO { get; set; }
public string PATH { get; set; }
public virtual ICollection
Ответ
В таблице связке должен был быть составной первичный ключ из id_photo и id_album.
Комментариев нет:
Отправить комментарий