Below code is not working with this connection string. Do I miss anything?? Connection string "Server=AZURESQLSERVER.database.windows.net,1433;Database=AZURE_DB;Authentication=Active Directory MSI;"
services.AddDistributedSqlServerCache(options =>
{
options.ConnectionString = CRAFDBConnection;
options.SchemaName = "dbo";
options.TableName = "SQLSessions";
});