ASP.NET MVC Identity 使用自己的SQL Server数据库

Posted marsmercury

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ASP.NET MVC Identity 使用自己的SQL Server数据库相关的知识,希望对你有一定的参考价值。

之前在网上看到的一篇后来找不到了,现在自己记录一下。

 

1.在web.config中添加一个数据库连接。

 <add name="dataContext" connectionString="Data Source=.;Initial Catalog=MVC1;User ID=XXX;password=XXX" providerName="System.Data.SqlClient" />

2.打开IdentityModels.cs文件,将base中的连接改成上一步中设置的连接名称。

public class ApplicationDbContext : IdentityDbContext<ApplicationUser>

public ApplicationDbContext()
: base("dataContext", throwIfV1Schema: false)

public static ApplicationDbContext Create()

return new ApplicationDbContext();

以上是关于ASP.NET MVC Identity 使用自己的SQL Server数据库的主要内容,如果未能解决你的问题,请参考以下文章

我们可以在不使用 ASP.Net Identity 的情况下使用 MVC 5 提供的 cookie 身份验证吗?

asp.net identity 3.0.0 在MVC下的基本使用 序言

将 asp.net 5 MVC 6 与 Identity 和 EF 6 一起使用的示例

ASP .NET 5 MVC 6 Identity 3 Roles Claims Groups [关闭]

ASP.NET MVC Identity 添加角色

asp.net identity 3.0.0 在MVC下的基本使用