два класа
public class Work
{
[Key]
public int Id { get; set; }
public int Number { get; set; }
//[Required]
[DataType(DataType.Url)]
public string Url { get; set; }
//[Required]
[DataType(DataType.Text)]
public string Description { get; set; }
//[DataType(DataType.Text)]
// public string Photo { get; set; }
public ICollection<Photo> Galery { get; set; }
}
public class Photo
{
[Key]
public int Id { get; set; }
public string Path { get; set; }
public int? WorkId;
public Work Work { get; set; }
}
подключил их через Dbset
но они не находять друг друга
Могу сказать как через model builder builder.Entity<Photo>(entity => { entity.HasOne(x => x.Work).WithMany(x => x.Photos); });
Обсуждают сегодня