Skip to content

Commit aa815e9

Browse files
authored
Merge pull request #21 from yv989c/develop
Support for the release version of EF Core 7
2 parents e2562a4 + 8bde36d commit aa815e9

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.github/workflows/ci-workflow.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
runs-on: windows-latest
4141
steps:
4242
- name: Checkout
43-
uses: actions/checkout@v2
43+
uses: actions/checkout@v3
4444

4545
- name: Restore
4646
run: dotnet restore BlazarTech.QueryableValues.sln
@@ -56,7 +56,7 @@ jobs:
5656
run: dotnet build BlazarTech.QueryableValues.SqlServer.sln -c Release --no-restore
5757

5858
- name: Upload Artifacts
59-
uses: actions/upload-artifact@v2
59+
uses: actions/upload-artifact@v3
6060
with:
6161
name: nupkg
6262
path: ./src/QueryableValues.SqlServer.EFCore*/bin/Release/*.nupkg
@@ -66,7 +66,7 @@ jobs:
6666
runs-on: windows-latest
6767
steps:
6868
- name: Download Artifact
69-
uses: actions/download-artifact@v1
69+
uses: actions/download-artifact@v3
7070
with:
7171
name: nupkg
7272
- name: Push to GitHub Feed
@@ -79,7 +79,7 @@ jobs:
7979
runs-on: windows-latest
8080
steps:
8181
- name: Download Artifact
82-
uses: actions/download-artifact@v1
82+
uses: actions/download-artifact@v3
8383
with:
8484
name: nupkg
8585
- name: Push to GitHub Feed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ EF Core | Command
4545
3.x | `Install-Package BlazarTech.QueryableValues.SqlServer -Version 3.5.0`
4646
5.x | `Install-Package BlazarTech.QueryableValues.SqlServer -Version 5.5.0`
4747
6.x | `Install-Package BlazarTech.QueryableValues.SqlServer -Version 6.5.0`
48-
7.x | `Install-Package BlazarTech.QueryableValues.SqlServer -Version 7.0.0-preview.2`
48+
7.x | `Install-Package BlazarTech.QueryableValues.SqlServer -Version 7.0.0`
4949

5050
## Configuration
5151
Look for the place in your code where you are setting up your [DbContext] and calling the [UseSqlServer] extension method, then use a lambda expression to access the `SqlServerDbContextOptionsBuilder` provided by it. It is on this builder that you must call the `UseQueryableValues` extension method as shown in the following simplified examples:

Version.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
<VersionEFCore3>3.5.0</VersionEFCore3>
44
<VersionEFCore5>5.5.0</VersionEFCore5>
55
<VersionEFCore6>6.5.0</VersionEFCore6>
6-
<VersionEFCore7>7.0.0-preview.2</VersionEFCore7>
6+
<VersionEFCore7>7.0.0</VersionEFCore7>
77
</PropertyGroup>
88
</Project>

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ EF Core | Command
4141
3.x | `Install-Package BlazarTech.QueryableValues.SqlServer -Version 3.5.0`
4242
5.x | `Install-Package BlazarTech.QueryableValues.SqlServer -Version 5.5.0`
4343
6.x | `Install-Package BlazarTech.QueryableValues.SqlServer -Version 6.5.0`
44-
7.x | `Install-Package BlazarTech.QueryableValues.SqlServer -Version 7.0.0-preview.2`
44+
7.x | `Install-Package BlazarTech.QueryableValues.SqlServer -Version 7.0.0`
4545

4646
## Configuration
4747
Look for the place in your code where you are setting up your [DbContext] and calling the [UseSqlServer] extension method, then use a lambda expression to access the `SqlServerDbContextOptionsBuilder` provided by it. It is on this builder that you must call the `UseQueryableValues` extension method as shown in the following simplified examples:

src/QueryableValues.SqlServer.EFCore7/QueryableValues.SqlServer.EFCore7.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
</PropertyGroup>
1111

1212
<ItemGroup>
13-
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.0-preview.6.22329.4" />
13+
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="[7.0,8.0)" />
1414
</ItemGroup>
1515
</Project>

tests/QueryableValues.SqlServer.Tests.EFCore7/QueryableValues.SqlServer.Tests.EFCore7.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@
2222

2323
<ItemGroup>
2424
<ProjectReference Include="..\..\src\QueryableValues.SqlServer.EFCore7\QueryableValues.SqlServer.EFCore7.csproj" />
25-
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.0-preview.7.22376.2" />
25+
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.0" />
2626
</ItemGroup>
2727
</Project>

0 commit comments

Comments
 (0)