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;
7
7
[ ExcludeFromCodeCoverage ]
8
8
public static class ConnectionStrings
9
9
{
10
+ /// <summary>
11
+ /// The connection string for CosmosDb database with standard NoSQL API.
12
+ /// </summary>
10
13
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>
11
18
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>
13
23
public static readonly bool EnableLogging = ( Environment . GetEnvironmentVariable ( "ENABLE_SQL_LOGGING" ) ?? "false" ) == "true" ;
14
24
}
You can’t perform that action at this time.
0 commit comments