Install Entity Framework Core NuGet package in Data project instead of solution.

dotnet remove package Microsoft.EntityFrameworkCore
cd EntityFrameworkCore.Data/
dotnet add package Microsoft.EntityFrameworkCore --version 9.0.3
This commit is contained in:
Kevin Matsubara 2025-04-04 15:57:34 +02:00
parent 28e6e98e93
commit 3db3e262e1
2 changed files with 4 additions and 4 deletions

View File

@ -6,4 +6,8 @@
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.3" />
</ItemGroup>
</Project>

View File

@ -7,8 +7,4 @@
<RootNamespace>entity_framework</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.3" />
</ItemGroup>
</Project>