File tree Expand file tree Collapse file tree 2 files changed +11
-52
lines changed
Expand file tree Collapse file tree 2 files changed +11
-52
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -7,8 +7,18 @@ namespace CommunityToolkit.Datasync.TestCommon.Databases;
77[ ExcludeFromCodeCoverage ]
88public static class ConnectionStrings
99{
10+ /// <summary>
11+ /// The connection string for CosmosDb database with standard NoSQL API.
12+ /// </summary>
1013 public static readonly string CosmosDb = Environment . GetEnvironmentVariable ( "COSMOS_CONNECTION_STRING" ) ;
14+
15+ /// <summary>
16+ /// The connection string for CosmosDb database with MongoDB API.
17+ /// </summary>
1118 public static readonly string CosmosMongo = Environment . GetEnvironmentVariable ( "MONGO_CONNECTION_STRING" ) ;
12- public static readonly string Service = Environment . GetEnvironmentVariable ( "SERVICE_ENDPOINT" ) ;
19+
20+ /// <summary>
21+ /// If true, enables logging of SQL queries to the console.
22+ /// </summary>
1323 public static readonly bool EnableLogging = ( Environment . GetEnvironmentVariable ( "ENABLE_SQL_LOGGING" ) ?? "false" ) == "true" ;
1424}
You can’t perform that action at this time.
0 commit comments