Guest User

Untitled

a guest
Jan 4th, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. //In Global.asax.cs
  2. builder.RegisterModule(new AzureModule(Assembly.GetExecutingAssembly()));
  3. var store = new TableBotDataStore(ConfigurationManager.ConnectionStrings["StorageConnectionString"].ConnectionString);
  4. builder.Register(c => store)
  5. .Keyed<IBotDataStore<BotData>>(AzureModule.Key_DataStore)
  6. .AsSelf()
  7. .SingleInstance();
Add Comment
Please, Sign In to add comment