NServiceBus.Persistence.Sql
NServiceBus.Persistence.Sql copied to clipboard
Native SQL Persistence for NServiceBus
Bumps [System.Data.SqlClient](https://github.com/dotnet/corefx) from 4.8.4 to 4.8.5. Release notes Sourced from System.Data.SqlClient's releases. .NET Core 2.1.0 RC1 Release Notes Known Issues Download and Install Repos CoreCLR CoreFX Core-Setup CLI Commits See...
Bumps [Microsoft.SqlServer.DACFx](https://github.com/microsoft/DacFx) from 160.6296.0 to 161.6374.0. Commits See full diff in compare view [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...
Bumps [Npgsql](https://github.com/npgsql/npgsql) from 6.0.7 to 7.0.0. Release notes Sourced from Npgsql's releases. v7.0.0 See the release notes. The full list of changes is available here. Commits f844598 Bump version to...
Bumps MySql.Data from 8.0.29 to 8.0.31. [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...
This issue describes possible options for improving saga performance when using MSSQL. These are not necessarily obviously better solutions, and will need to be validated by performance testing with various...
- Related to : https://github.com/Particular/NServiceBus.Persistence.Sql/issues/778 By default instances will be competing for the outbox cleanup task. If for instances the endpoint is scaled out to 5 instances then the cleanup...
Quoting @mauroservienti > say that you have a legacy system which db you cannot touch, and you want to introduce messaging. If you need the Outbox and want to use...
SqlPersistence offers an option to control scripts generation via an assembly level attribute. When using the attribute it seems natural to disable scripts generation byu setting values to `false`: ```...
*Issue transferred from internal repo* There is a [new command line tool](https://github.com/Particular/NServiceBus.Persistence.Sql/pull/598) that users can use to generate the database scripts. The new script can be used when we drop...
It's possible, and recommended in the docs, to configure your script generation using something like the following: ``` [assembly: SqlPersistenceSettings( MsSqlServerScripts = false, MySqlScripts = false, OracleScripts = true, PostgreSqlScripts...