更改 Identity SQL 存储时出错(官方教程)

Posted

技术标签:

【中文标题】更改 Identity SQL 存储时出错(官方教程)【英文标题】:Errors changing the Identity SQL storage (official tutorial) 【发布时间】:2015-07-28 23:06:02 【问题描述】:

按照官方教程 (http://www.asp.net/identity/overview/getting-started/aspnet-identity-using-mysql-storage-with-an-entityframework-mysql-provider),我创建了一个新的 MVC 项目和我需要的所有文件(MySqlHistoryContext 等)。这里没有问题,但是教程按'运行',一切都正确,我按'运行',得到截图中的错误。

模板已经定义了“ApplicationUserManager”类,所以***中解决的线程对我没有用。

Web.config

<?xml version="1.0" encoding="utf-8"?>
<!--
  For more information on how to configure your ASP.NET application, please visit
  http://go.microsoft.com/fwlink/?LinkId=301880
  -->
<configuration>
  <configSections>
    <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
  <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 --></configSections>
  <connectionStrings>
    <!--<add name="DefaultConnection" connectionString="Data Source=(LocalDb)\v11.0;AttachDbFilename=|DataDirectory|\aspnet-Test2-20150517124010.mdf;Initial Catalog=aspnet-Test2-20150517124010;Integrated Security=True" providerName="System.Data.SqlClient" />-->
    <add name="DefaultConnection"
      providerName="MySql.Data.MySqlClient"
      connectionString="Server=localhost;Database=users;Uid=root;Pwd=Password1;"/>
  </connectionStrings>
  <appSettings>
    <add key="webpages:Version" value="3.0.0.0" />
    <add key="webpages:Enabled" value="false" />
    <add key="ClientValidationEnabled" value="true" />
    <add key="UnobtrusivejavascriptEnabled" value="true" />
  </appSettings>
  <system.web>
    <authentication mode="None" />
    <compilation debug="true" targetFramework="4.5.1" />
    <httpRuntime targetFramework="4.5.1" />
  </system.web>
  <system.webServer>
    <modules>
      <remove name="FormsAuthentication" />
    </modules>
  </system.webServer>
  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.Owin" publicKeyToken="31bf3856ad364e35" />
        <bindingRedirect oldVersion="0.0.0.0-3.0.1.0" newVersion="3.0.1.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.Owin.Security.OAuth" publicKeyToken="31bf3856ad364e35" />
        <bindingRedirect oldVersion="0.0.0.0-3.0.1.0" newVersion="3.0.1.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.Owin.Security.Cookies" publicKeyToken="31bf3856ad364e35" />
        <bindingRedirect oldVersion="0.0.0.0-3.0.1.0" newVersion="3.0.1.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.Owin.Security" publicKeyToken="31bf3856ad364e35" />
        <bindingRedirect oldVersion="0.0.0.0-3.0.1.0" newVersion="3.0.1.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Newtonsoft.Json" culture="neutral" publicKeyToken="30ad4fe6b2a6aeed" />
        <bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="System.Web.Optimization" publicKeyToken="31bf3856ad364e35" />
        <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="1.1.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" />
        <bindingRedirect oldVersion="0.0.0.0-1.5.2.14234" newVersion="1.5.2.14234" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
        <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
        <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
        <bindingRedirect oldVersion="1.0.0.0-5.2.3.0" newVersion="5.2.3.0" />
      </dependentAssembly>
    </assemblyBinding>
  </runtime>
  <entityFramework>
    <providers>
      <provider invariantName="MySql.Data.MySqlClient"
        type="MySql.Data.MySqlClient.MySqlProviderServices, MySql.Data.Entity"/>
    </providers>
  </entityFramework>
  <system.data>
    <DbProviderFactories>
      <remove invariant="MySql.Data.MySqlClient"></remove>
      <add name="MySQL Data Provider"
        invariant="MySql.Data.MySqlClient"
        description=".Net Framework Data Provider for MySQL"
        type="MySql.Data.MySqlClient.MySqlClientFactory, MySql.Data, Version=6.7.2.0"/>
    </DbProviderFactories>
  </system.data>
</configuration>

【问题讨论】:

您能具体说明您遇到的错误吗?从屏幕截图看不出来。 您可以“右键单击->查看图像”并完美地看到它:) 我正在使用该应用程序。没有右键 好的,这是链接:i.stack.imgur.com/0lyXz.png 【参考方案1】:

Joe,我认为本教程已经过时,这里存在问题。

教程中有一条评论指出最近有人这样做。这可能会有所帮助。 http://k16c.eu/2014/10/12/asp-net-identity-2-0-mariadb/

附注:Connector/NET 的最新版本支持 EF 迁移。创建教程时 - 正如它所说 - MySQL 不支持迁移。由于 Connector/NET 支持 EF 迁移,因此最新版本的 MYSQL.Data.Entities 也将支持它。因此,您可能不必像这些教程中描述的那样包含对 HistoryContext 的更改。

【讨论】:

【参考方案2】:

乔,

查看您的代码后,连接字符串对我来说很有趣。你确定那是正确的字符串。 LocaldB 是一个 SQL 的东西。它是 VS 默认的,绝对不是 MySql 数据库。

我看过很多使用 MySql db 和 Identity 的教程。他们都没有使用这样的字符串。

MySql 开发网站列出了正确的连接字符串。

http://dev.mysql.com/doc/connector-net/en/connector-net-entityframework60.html

【讨论】:

【参考方案3】:

您的 ApplicationDbContext 类缺少静态 Create 方法。

例如:

public class ApplicationDbContext : IdentityDbContext<ApplicationUser>

    public static ApplicationDbContext Create()
    
        return new ApplicationDbContext();
    

此外,您的 ApplicationUser 类缺少 GenerateUserIdentityAsync 方法。例如:

public async Task<ClaimsIdentity> GenerateUserIdentityAsync(
    UserManager<ApplicationUser> manager) 

    var userIdentity = 
        await manager.CreateIdentityAsync(this, 
            DefaultAuthenticationTypes.ApplicationCookie);
    // Add custom user claims here
    return userIdentity;

【讨论】:

是的,我也测试过,但是如果我添加此代码并运行项目,我会收到 InvalidOperationException:i.stack.imgur.com/r7VYw.png 请发布您的web.config。将来,请复制错误消息并发布它们,而不是使用屏幕截图。让所有相关人员的生活更轻松。 最后一个屏幕截图中的错误消息的其余部分是什么?一半的消息被截断... 对不起,我对VS不是很熟悉。 “在 mscorlib.dll 中发生了“System.InvalidOperationException”类型的异常,但未在用户代码中处理附加信息:在应用程序配置中注册的实体框架提供程序类型“MySql.Data.MySqlClient.MySqlProviderServices,MySql.Data.Entity”无法加载具有不变名称“MySql.Data.MySqlClient”的 ADO.NET 提供程序的文件。请确保使用程序集限定名称并且程序集可用于正在运行的应用程序。有关详细信息,请参阅 go.microsoft.com/fwlink/?LinkId=260882 " 我必须添加一条评论:我已经添加了“Version=6.7.2.0”,因为教程说,但我不知道(以及如何放置,因为我没有任何参考)如果我有正确的版本。

以上是关于更改 Identity SQL 存储时出错(官方教程)的主要内容,如果未能解决你的问题,请参考以下文章

sql server 2000 列添加identity标识 出现错误时,弹出警告,清除警告后再次输入数据,标识会丢失一个

SQL Server 2005:在两个主键之一上设置自动增量时出错

更改 SQL Server DB 中列的数据类型时出错 - Java

在 ASP.NET Core 中使用基于本地存储的 JWT-Token 更改用户密码(ASP.Identity)

在 C# 中的 app.config 文件中存储 < 和 > 字符时出错

从 github 存储库导入 go-sql-driver/sql 时出错