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 ab7aa7e commit b13c4ffCopy full SHA for b13c4ff
test/JsonApiDotNetCoreTests/IntegrationTests/ResourceDefinitions/Reading/ResourceDefinitionReadTests.cs
@@ -331,7 +331,7 @@ public async Task Filter_from_resource_definition_is_applied_on_secondary_endpoi
331
await _testContext.RunOnDatabaseAsync(async dbContext =>
332
{
333
await dbContext.ClearTableAsync<Planet>();
334
- dbContext.Stars.AddRange(star);
+ dbContext.Stars.Add(star);
335
await dbContext.SaveChangesAsync();
336
});
337
@@ -387,7 +387,7 @@ public async Task Filter_from_resource_definition_is_applied_on_relationship_end
387
388
389
390
391
392
393
0 commit comments