Skip to content
Open
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
10 changes: 5 additions & 5 deletions samples/LinqContraband.Sample/LinqContraband.Sample.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.14"/>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.17"/>
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="9.0.14"/>
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="9.0.0"/>
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="9.0.17"/>
Comment on lines +22 to +24

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Keep EF Core packages on one patch version

This bump updates Microsoft.EntityFrameworkCore and Microsoft.EntityFrameworkCore.InMemory to 9.0.17, but the same net9.0/net8.0 groups still pin Microsoft.EntityFrameworkCore.Relational to 9.0.14. The sample invokes relational APIs such as FromSqlRaw and ExecuteSqlRawAsync, and Microsoft's EF Core package guidance says all Microsoft Microsoft.EntityFrameworkCore.* packages should be installed at the same version; restoring 9.0.17 Core/InMemory with 9.0.14 Relational leaves CI/sample diagnostics on a mixed EF runtime. Please bump Relational to 9.0.17 in these groups too.

Useful? React with 👍 / 👎.

</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.14"/>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.17"/>
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="9.0.14"/>
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="8.0.0"/>
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="9.0.14"/>
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="9.0.17"/>
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="9.0.17"/>
</ItemGroup>
</Project>
Loading