C#C
C#4y ago
danno8524

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?
Was this page helpful?