Hi,
I just started with the Contoso University sample project and found it tremendously great. But as I started on the same track with my personal Database, I realized that having Composite Keys I couldn't return back records because of the two (or more) arguments. I can load the list and create a new record but can't return details, edit or delete pages.
Most probably because of the sections like:
var student = await _context.Students
.Include(s => s.Enrollments)
.ThenInclude(e => e.Course)
.AsNoTracking()
.SingleOrDefaultAsync(m => m.ID == id);
as against mine, where two or more are to be considered as ids.
Any idea how to overcome the problem?