Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project>
<PropertyGroup>
<EFCoreVersion>11.0.0-preview.3.26167.112</EFCoreVersion>
<MicrosoftExtensionsVersion>11.0.0-preview.3.26167.112</MicrosoftExtensionsVersion>
<MicrosoftExtensionsConfigurationVersion>11.0.0-preview.3.26167.112</MicrosoftExtensionsConfigurationVersion>
<EFCoreVersion>11.0.0-preview.3.26174.112</EFCoreVersion>
<MicrosoftExtensionsVersion>11.0.0-preview.3.26174.112</MicrosoftExtensionsVersion>
<MicrosoftExtensionsConfigurationVersion>11.0.0-preview.3.26174.112</MicrosoftExtensionsConfigurationVersion>
<NpgsqlVersion>10.0.0</NpgsqlVersion>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -667,6 +667,18 @@ WHERE c."CustomerID" LIKE 'F%'
""");
}

public override async Task Update_Where_set_nullable_int_constant_via_discard_lambda(bool async)
{
await base.Update_Where_set_nullable_int_constant_via_discard_lambda(async);

AssertExecuteUpdateSql(
"""
UPDATE "Products" AS p
SET "SupplierID" = 1
WHERE p."ProductID" < 5
""");
}

public override async Task Update_Where_parameter_set_constant(bool async)
{
await base.Update_Where_parameter_set_constant(async);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,24 @@ public override async Task Index_on_nested_collection()
""");
}

public override async Task Project_struct_complex_type_with_entity_collection_navigation()
{
await base.Project_struct_complex_type_with_entity_collection_navigation();

AssertSql(
"""
SELECT p0."Coords_X", p0."Coords_Y", p0."Id", c."Id", c."Name", c."ParentId"
FROM (
SELECT p."Coords_X", p."Coords_Y", p."Id"
FROM "Parent" AS p
ORDER BY p."Id" NULLS FIRST
LIMIT 1
) AS p0
LEFT JOIN "Child" AS c ON p0."Id" = c."ParentId"
ORDER BY p0."Id" NULLS FIRST
""");
}

[ConditionalFact]
public virtual void Check_all_tests_overridden()
=> TestHelpers.AssertAllMethodsOverridden(GetType());
Expand Down
Loading