BotBuilder-Azure/CSharp
nt 57fce6f1ac
Improve enableCrossPartitionQuery parameter in DocumentDbBotDataStore
In my previous implementation, enableCrossPartitionQuery is always true.
So, I improved enabledCrossPartitionQuery can be set as an optional parameter.
2019-04-08 15:55:07 +09:00
..
Library Improve enableCrossPartitionQuery parameter in DocumentDbBotDataStore 2019-04-08 15:55:07 +09:00
Samples update to 3.16.1 2018-09-05 20:36:34 -07:00
SimpleEchoBot update to 3.16.1 2018-09-05 20:36:34 -07:00
Tests/Microsoft.Bot.Builder.Azure.Tests update to 3.16.1 2018-09-05 20:36:34 -07:00
buildtools Comment added to updateAssemblyInfo.ps1 2018-07-11 10:59:33 -07:00
.gitignore Add .gitignore to CSharp folder 2017-03-07 15:13:35 -08:00
AzureSql-CreateTable.sql Added readme.md for CSharp with accompanying sql script to create the Azure Sql Table. 2017-10-20 15:44:47 -07:00
Microsoft.Bot.Builder.Azure.sln SourceLink added to project. 2018-07-10 17:43:51 -07:00
readme.md Added readme.md for CSharp with accompanying sql script to create the Azure Sql Table. 2017-10-20 15:44:47 -07:00

readme.md

Bot Builder Azure Extensions for .NET

Bot Builder Azure Extensions for .NET enable bot developers to integrate bots with specific Azure components.

High level features:

  • Azure Table Storage: Allows bot developers to store bot state in their own Azure Storage accounts. For more information on Azure Table Storage, visit the Azure Table Storage Documentation
  • Azure CosmosDb: Allows bot developers to store bot state in CosmosDb. For more information on Azure CosmosDb, visit the Azure CosmosDB Documentation
  • Azure SQL Database: Allows bot developers to store bot state using Azure SQL. For more information on Azure SQL, visit the Azure SQL Database Documentation Note: A script for creating the SqlBotDataEntities table can be found here

Creating a Bot Project

Bot project templates for Visual Studio can be downloaded from here

Sample

You can also base your bot on one of our samples, which showcase using Azure Table Storage, CosmosDb and Azure SQL. Read the detailed steps in the sample to set up storage emulators or connect to Azure.

Test your bot

Use the Bot Framework Emulator to test your bot on localhost. The emulator can be downloaded from here

Publish your bot

Register your bot with the Bot Framework then deploy. If you're deploying your bot to Microsoft Azure you can use this great guide: Deploy a .NET bot to Azure from Visual Studio.

NOTE: Once you register your bot with the Bot Framework you'll want to update the MicrosoftAppId & MicrosoftAppPassword in the Web.config with the values assigned to you by the portal.

Bot Framework

The Microsoft Bot Framework provides just what you need to build and connect intelligent bots that interact naturally wherever your users are talking, from text/sms to Skype, Slack, Office 365 mail and other popular services.

Bots (or conversation agents) are rapidly becoming an integral part of ones digital experience – they are as vital a way for users to interact with a service or application as is a web site or a mobile experience. Developers writing bots all face the same problems: bots require basic I/O; they must have language and dialog skills; and they must connect to users – preferably in any conversation experience and language the user chooses. The Bot Framework provides tools to easily solve these problems and more for developers e.g., automatic translation to more than 30 languages, user and conversation state management, debugging tools, an embeddable web chat control and a way for users to discover, try, and add bots to the conversation experiences they love.

Dive deeper

Learn how to build great bots.