Azure Table Storage chat storage for Vermilion. Automatically ensures the target table exists.
$ dotnet add package DioRed.Vermilion.ChatStorage.AzureTableAzure Table Storage based chat storage for Vermilion.
{
"Vermilion": {
"AzureTable": {
"ConnectionString": "DefaultEndpointsProtocol=...",
"TableName": "VermilionChats"
}
}
}
v.ConfigureChatStorage(s => s.UseAzureTable());
Or explicit settings:
v.ConfigureChatStorage(s => s.UseAzureTable(settings, o => o.TableName = "VermilionChats"));