使用.NET在mySQL中保存bot状态数据

问题描述 投票:1回答:1

由于Bot State服务很快就会退役,我想将我的bot状态信息存储在我的本地mySQL数据库中。

我尝试使用mySQL连接字符串在Global.asax中实例化SqlBotDataStore客户端,但我认为由于尚未创建SqlBotDataEntities表,我遗漏了一些东西。

请就此提出建议。谢谢!

protected void Application_Start(object sender, EventArgs e)
{
    {
        var config = GlobalConfiguration.Configuration;

        Conversation.UpdateContainer(
            builder =>
                {
                    builder.RegisterModule(new AzureModule(Assembly.GetExecutingAssembly()));

                    var store = new SqlBotDataStore(ConfigurationManager.ConnectionStrings["mySQL_ConnectionString"].ConnectionString);

                    builder.Register(c => store)
                        .Keyed<IBotDataStore<BotData>>(AzureModule.Key_DataStore)
                        .AsSelf()
                        .SingleInstance();


                    // Register your Web API controllers.
                    builder.RegisterApiControllers(Assembly.GetExecutingAssembly());
                    builder.RegisterWebApiFilterProvider(config);

                });

        config.DependencyResolver = new AutofacWebApiDependencyResolver(Conversation.Container);
    }

    // WebApiConfig stuff
    GlobalConfiguration.Configure(config =>
    {
        config.MapHttpAttributeRoutes();

        config.Routes.MapHttpRoute(
            name: "DefaultApi",
            routeTemplate: "api/{controller}/{id}",
            defaults: new { id = RouteParameter.Optional }
        );
    });
}
c# mysql .net botframework azure-bot-service
1个回答
0
投票

SqlBotDataStorehttps://github.com/Microsoft/BotBuilder-Azure/是针对Azure SQL而不是MySQL而制作的。

您不能将它与MySQL数据库一起使用。

这个NuGet包有2个选项:

  • Azure表存储
  • CosmosDB
© www.soinside.com 2019 - 2024. All rights reserved.