EPiServer.Commerce 14.1.1
Nov 11, 2021
Mar 30, 2022
Closed, Fixed and tested
Fixed an issue where customers had to explicitly add the EcfSqlConnection connection string when configuring the application:
services.Configure<DataAccessOptions>(options => { options.ConnectionStrings.Add(new ConnectionStringOptions { ConnectionString = _configuration.GetConnectionString("EcfSqlConnection"), Name = "EcfSqlConnection" }); });
This is now automatically done in the .AddCommerce() extension method.