Skip to content
This repository has been archived by the owner on Dec 24, 2022. It is now read-only.

Commit

Permalink
Downgrade to 8.0.21 due to MySql Guid? bug with null value
Browse files Browse the repository at this point in the history
  • Loading branch information
mythz committed Nov 9, 2020
1 parent f0ead47 commit 0d7b022
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<ItemGroup>
<ProjectReference Include="..\ServiceStack.OrmLite\ServiceStack.OrmLite.Core.csproj" />
<PackageReference Include="ServiceStack.Common.Core" Version="$(Version)" />
<PackageReference Include="Mysql.Data" Version="8.0.22" />
<PackageReference Include="Mysql.Data" Version="8.0.21" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

<ItemGroup>
<ProjectReference Include="..\ServiceStack.OrmLite\ServiceStack.OrmLite.csproj" />
<PackageReference Include="Mysql.Data" Version="8.0.22" />
<PackageReference Include="Mysql.Data" Version="8.0.21" />
<PackageReference Include="ServiceStack.Common" Version="$(Version)" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/ServiceStack.OrmLite.MySql/app.config
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" /></startup><system.data>
<DbProviderFactories>
<remove invariant="MySql.Data.MySqlClient" />
<add name="MySQL Data Provider" invariant="MySql.Data.MySqlClient" description=".Net Framework Data Provider for MySQL" type="MySql.Data.MySqlClient.MySqlClientFactory, MySql.Data, Version=8.0.15.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d" />
<add name="MySQL Data Provider" invariant="MySql.Data.MySqlClient" description=".Net Framework Data Provider for MySQL" type="MySql.Data.MySqlClient.MySqlClientFactory, MySql.Data, Version=8.0.21.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d" />
</DbProviderFactories>
</system.data></configuration>
2 changes: 1 addition & 1 deletion tests/ServiceStack.OrmLite.MySql.Tests/app.config
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<system.data>
<DbProviderFactories>
<remove invariant="MySql.Data.MySqlClient" />
<add name="MySQL Data Provider" invariant="MySql.Data.MySqlClient" description=".Net Framework Data Provider for MySQL" type="MySql.Data.MySqlClient.MySqlClientFactory, MySql.Data, Version=8.0.15.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d" />
<add name="MySQL Data Provider" invariant="MySql.Data.MySqlClient" description=".Net Framework Data Provider for MySQL" type="MySql.Data.MySqlClient.MySqlClientFactory, MySql.Data, Version=8.0.21.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d" />
</DbProviderFactories>
</system.data>
</configuration>

0 comments on commit 0d7b022

Please sign in to comment.