Get Environment Variables...
I am trying to get the connection string for my Azure Tables with the following code.
TableServiceClient tableServiceClient = new TableServiceClient(Environment.GetEnvironmentVariable("StorageConnectionString"));
This is returning a null value... My question is where should I be storing this connection string in a ASP.net core 6.0 app?
TableServiceClient tableServiceClient = new TableServiceClient(Environment.GetEnvironmentVariable("StorageConnectionString"));
This is returning a null value... My question is where should I be storing this connection string in a ASP.net core 6.0 app?