Skip to content

Commit

Permalink
Upgrade EntityFrameworkCore.SqlServer.SimpleBulks
Browse files Browse the repository at this point in the history
  • Loading branch information
phongnguyend committed Oct 2, 2024
1 parent 7050b37 commit 82b35d9
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<ItemGroup>
<PackageReference Include="Duende.IdentityServer.EntityFramework" Version="6.3.7" />
<PackageReference Include="EntityFrameworkCore.SqlServer.SimpleBulks" Version="6.12.0" />
<PackageReference Include="EntityFrameworkCore.SqlServer.SimpleBulks" Version="8.0.0" />
<PackageReference Include="Microsoft.AspNetCore.DataProtection.EntityFrameworkCore" Version="8.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.0" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="EntityFrameworkCore.SqlServer.SimpleBulks" Version="6.12.0" />
<PackageReference Include="EntityFrameworkCore.SqlServer.SimpleBulks" Version="8.0.0" />
<PackageReference Include="Microsoft.AspNetCore.DataProtection.EntityFrameworkCore" Version="8.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.2.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.0" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<PackageReference Include="CsvHelper" Version="30.0.1" />
<PackageReference Include="Dapper.StrongName" Version="2.1.24" />
<PackageReference Include="DinkToPdf" Version="1.0.8" />
<PackageReference Include="EntityFrameworkCore.SqlServer.SimpleBulks" Version="6.12.0" />
<PackageReference Include="EntityFrameworkCore.SqlServer.SimpleBulks" Version="8.0.0" />
<PackageReference Include="IdentityModel" Version="6.2.0" />
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.22.0" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="8.0.0" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<PackageReference Include="CsvHelper" Version="30.0.1" />
<PackageReference Include="Dapper.StrongName" Version="2.1.24" />
<PackageReference Include="DinkToPdf" Version="1.0.8" />
<PackageReference Include="EntityFrameworkCore.SqlServer.SimpleBulks" Version="6.12.0" />
<PackageReference Include="EntityFrameworkCore.SqlServer.SimpleBulks" Version="8.0.0" />
<PackageReference Include="IdentityModel" Version="6.2.0" />
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.22.0" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="8.0.0" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="EntityFrameworkCore.SqlServer.SimpleBulks" Version="6.12.0" />
<PackageReference Include="EntityFrameworkCore.SqlServer.SimpleBulks" Version="8.0.0" />
<PackageReference Include="Microsoft.AspNetCore.DataProtection.EntityFrameworkCore" Version="8.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.2.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.0" />
Expand Down
25 changes: 25 additions & 0 deletions tools/mysql/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
version: '3.8'

services:
db:
image: mysql:8.0
environment:
MYSQL_ROOT_PASSWORD: mysql
MYSQL_DATABASE: mysql
MYSQL_USER: mysql
MYSQL_PASSWORD: mysql
ports:
- "3306:3306"
phpmyadmin:
image: phpmyadmin/phpmyadmin
environment:
PMA_HOST: db
MYSQL_ROOT_PASSWORD: mysql
ports:
- "8080:80"
depends_on:
- db
networks:
default:
name: phongnguyend
external: true
2 changes: 1 addition & 1 deletion tools/postgresql/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3.6'
services:
db:
image: postgres:11-alpine
image: postgres:17-alpine
ports:
- "5432:5432"
environment:
Expand Down

0 comments on commit 82b35d9

Please sign in to comment.