We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Please describe what you are trying to understand
I ran into this while working on https://github.com/Aaronontheweb/AkkaPersistenceSqlMemoryLeak
With a package setup that looks like:
<Project> <PropertyGroup> <ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally> </PropertyGroup> <ItemGroup Label="App"> <PackageVersion Include="Akka.Hosting" Version="1.5.37" /> <PackageVersion Include="Akka.Persistence.Sql.Hosting" Version="1.5.37" /> <PackageVersion Include="Microsoft.Extensions.Hosting" Version="8.0.0" /> </ItemGroup> </Project>
You will get the following runtime exception at startup:
If you do not explicitly add the System.Data.SqlClient (for SQL Server - the package will be different for SQLite / Postgres / etc)
System.Data.SqlClient
<Project> <PropertyGroup> <ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally> </PropertyGroup> <ItemGroup Label="App"> <PackageVersion Include="Akka.Hosting" Version="1.5.37" /> <PackageVersion Include="Akka.Persistence.Sql.Hosting" Version="1.5.37" /> <PackageVersion Include="Microsoft.Extensions.Hosting" Version="8.0.0" /> <PackageVersion Include="System.Data.SqlClient" Version="4.9.0" /> </ItemGroup> </Project>
We should document this in README.md
README.md
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Please describe what you are trying to understand
I ran into this while working on https://github.com/Aaronontheweb/AkkaPersistenceSqlMemoryLeak
With a package setup that looks like:
You will get the following runtime exception at startup:
If you do not explicitly add the
System.Data.SqlClient
(for SQL Server - the package will be different for SQLite / Postgres / etc)We should document this in
README.md
The text was updated successfully, but these errors were encountered: