Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FIX: Include Encrypt=false on local connection string (#20)
Because of [one EF Core 7 breaking change](https://learn.microsoft.com/en-us/ef/core/what-is-new/ef-core-7.0/breaking-changes#encrypt-defaults-to-true-for-sql-server-connections), the `Encrypt` option for SQL Server connections is enabled by default. In order to mitigate inconveniences for local development environments, the default connection string is moved to `appsettings.Development.json` where it includes the `Encrypt=false` flag. If the developer wants to enforce this or not on a Release build, it's up to them when building the solution. Co-authored-by: Gonzalo Fernández <[email protected]>
- Loading branch information