Skip to content
This repository was archived by the owner on Jul 28, 2025. It is now read-only.

Commit de14772

Browse files
chore: variable casing
1 parent d75f4dc commit de14772

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/ServiceLayer.API/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
?? throw new InvalidOperationException($"Environment variable 'EVENT_GRID_TOPIC_URL' is not set or is empty.");
1010
var eventGridTopicKey = Environment.GetEnvironmentVariable("EVENT_GRID_TOPIC_KEY")
1111
?? throw new InvalidOperationException($"Environment variable 'EVENT_GRID_TOPIC_KEY' is not set or is empty.");
12-
var DatabaseConnectionString = Environment.GetEnvironmentVariable("DatabaseConnectionString")
12+
var databaseConnectionString = Environment.GetEnvironmentVariable("DatabaseConnectionString")
1313
?? throw new InvalidOperationException($"Environment variable 'DatabaseConnectionString' is not set or is empty.");
1414

1515

@@ -30,7 +30,7 @@
3030
});
3131
services.AddDbContext<ServiceLayerDbContext>(options =>
3232
{
33-
options.UseSqlServer(DatabaseConnectionString);
33+
options.UseSqlServer(databaseConnectionString);
3434
});
3535
})
3636
.Build();

0 commit comments

Comments
 (0)