How to create a many to many relationship with latest nightly builds of EF Core?
This is tracked by #1368. The workaround is to map the join table to an entity: class Photo { public int Id { get; set; } public ICollection<PersonPhoto> PersonPhotos{ get; set; } } class PersonPhoto { public int PhotoId { get; set; } public Photo Photo { get; set; } public int PersonId { get; … Read more