We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c0f0e9 commit 2202019Copy full SHA for 2202019
test/JsonApiDotNetCoreTests/IntegrationTests/QueryStrings/QueryStringDbContext.cs
@@ -36,7 +36,7 @@ protected override void OnModelCreating(ModelBuilder builder)
36
.HasForeignKey<Man>();
37
38
builder.Entity<Calendar>()
39
- .HasMany<Appointment>(calendar => calendar.Appointments)
+ .HasMany(calendar => calendar.Appointments)
40
.WithOne(appointment => appointment.Calendar);
41
42
base.OnModelCreating(builder);
0 commit comments