Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //In Global.asax.cs
- builder.RegisterModule(new AzureModule(Assembly.GetExecutingAssembly()));
- var store = new TableBotDataStore(ConfigurationManager.ConnectionStrings["StorageConnectionString"].ConnectionString);
- builder.Register(c => store)
- .Keyed<IBotDataStore<BotData>>(AzureModule.Key_DataStore)
- .AsSelf()
- .SingleInstance();
Add Comment
Please, Sign In to add comment