You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We use our own setup of connection string in settings. We require ConnectionString section with ProviderName and ConnectionString subkeys. (And I think when we use migrations in APIs, the connection string is twice in the appsettings.json.)
We could use default connection strings settings (as Entity Framework does it). The section name is ConnectionStrings and subkeys are names of the connection strings. Our provider can be integrated in connection string itself. When creating IDatabase, connection string name will be specified. If the name is not specified, default name DefaultConnection will be used.
The text was updated successfully, but these errors were encountered:
We use our own setup of connection string in settings. We require
ConnectionString
section withProviderName
andConnectionString
subkeys. (And I think when we use migrations in APIs, the connection string is twice in theappsettings.json
.)We could use default connection strings settings (as Entity Framework does it). The section name is
ConnectionStrings
and subkeys are names of the connection strings. Our provider can be integrated in connection string itself. When creatingIDatabase
, connection string name will be specified. If the name is not specified, default nameDefaultConnection
will be used.The text was updated successfully, but these errors were encountered: