當咱們默認新建一個ASP.NET MVC項目的時候,使用的身份認證系統是ASP.NET Identity.
可是這裏的Identity使用的主鍵爲String類型的GUID.固然這是大多數系統首先類型.
可是由於歷史緣由,而咱們公司全部項目主鍵都是用的Int類型(這裏不討論int和GUID的優劣)
因此默認的String類型GUID就不能知足咱們的需求,因此進行一些擴展,讓其支持Int類型。
下圖爲默認使用String作主鍵的ASP.NET MVC數據庫
ApplicationUser繼承自IdentityUser,而IdentityUser繼承/實現
IdentityUser<string, IdentityUserLogin, IdentityUserRole, IdentityUserClaim>, IUser, IUser<string>
這樣就使得主鍵爲string類型了,其中IentityUser,IdentityUserLogin,IdentityUserRole,IdentityUserClaim都是<string>
因此生成默認的數據庫裏的表結構成了下圖這樣,主鍵都爲nvarchar安全
接下來,擴展爲Int主鍵首先增長以下幾個類
app
public class ApplicationUserLogin : IdentityUserLogin<int> { } public class ApplicationUserCliam : IdentityUserClaim<int> { } public class ApplicationUserRole : IdentityUserRole<int> { } public class ApplicationRole : IdentityRole<int, ApplicationUserRole>, IRole<int> { public string Description { get; set; } public ApplicationRole() { } public ApplicationRole(string name) : this() { this.Name = name; } public ApplicationRole(string name, string description) : this(name) { this.Description = description; } }
ApplicationUserLogin 繼承自IdentityUserLogin<int>
ApplicationUserCliam 繼承自IdentityUserClaim<int>
ApplicationUserRole 繼承自IdentityUserRole<int>
ApplicationRole 繼承自IdentityRole<int, ApplicationUserRole>, IRole<int>
在Role裏還增長了一個屬性Deacription(默認實體裏只有Id,Name)
作了這步後。其實在Code first中,咱們就已經把實體的結構主鍵修改成int型了,
只要用這個對應實體Update到數據庫中的話。主鍵會修改爲int
而後咱們還要對應ASP.NET MVC的一些改造才能夠適應現有的模板
而後咱們將ApplicationUser修改
asp.net
public class ApplicationUser : IdentityUser
{
public async Task<ClaimsIdentity> GenerateUserIdentityAsync(UserManager<ApplicationUser> manager)
{
// 請注意,authenticationType 必須與 CookieAuthenticationOptions.AuthenticationType 中定義的相應項匹配
var userIdentity = await manager.CreateIdentityAsync(this, DefaultAuthenticationTypes.ApplicationCookie);
// 在此處添加自定義用戶聲明
return userIdentity;
}
}
修改成:
async
public class ApplicationUser
: IdentityUser<int, ApplicationUserLogin, ApplicationUserRole, ApplicationUserCliam>, IUser<int>
{
public async Task<ClaimsIdentity> GenerateUserIdentityAsync(UserManager<ApplicationUser, int> manager)
{
// 請注意,authenticationType 必須與 CookieAuthenticationOptions.AuthenticationType 中定義的相應項匹配
var userIdentity = await manager.CreateIdentityAsync(this, DefaultAuthenticationTypes.ApplicationCookie);
// 在此處添加自定義用戶聲明
return userIdentity;
}
}
接下來咱們要修改數據庫上下文ApplicationDbContext
修改成
ide
public class ApplicationDbContext
: IdentityDbContext<ApplicationUser, ApplicationUserRole, int,
ApplicationUserLogin, ApplicationUserRole, ApplicationUserCliam>
{
public ApplicationDbContext()
: base("DefaultConnection")
{
}
public static ApplicationDbContext Create()
{
return new ApplicationDbContext();
}
}
而後在增長以下兩個類
post
public class ApplicationUserStore
: UserStore<ApplicationUser, ApplicationRole, int,
ApplicationUserLogin, ApplicationUserRole, ApplicationUserCliam>,
IUserStore<ApplicationUser, int>,
IDisposable
{
public ApplicationUserStore(DbContext context)
: base(context)
{ }
public ApplicationUserStore()
: this(new IdentityDbContext())
{
base.DisposeContext = true;
}
}
public class ApplicationRoleStore
: RoleStore<ApplicationRole, int, ApplicationUserRole>,
IQueryableRoleStore<ApplicationRole, int>,
IRoleStore<ApplicationRole>,
IDisposable
{
public ApplicationRoleStore()
: base(new IdentityDbContext())
{
base.DisposeContext = true;
}上面的幾處代碼全修改在IdentityModels.cs文件中this
而後修改App_Start\IdentityConfig.cs
在類ApplicationUserManager和ApplicationSignInManager中
把裏面全部繼承自<ApplicationRole>泛型的地址所有都修改成<ApplicationRole,int>
public class ApplicationUserManager : UserManager<ApplicationUser,int>
public ApplicationUserManager(IUserStore<ApplicationUser, int> store)
manager.UserValidator = new UserValidator<ApplicationUser, int>(manager)
manager.RegisterTwoFactorProvider("電話代碼", new PhoneNumberTokenProvider<ApplicationUser,int>
manager.RegisterTwoFactorProvider("電子郵件代碼", new EmailTokenProvider<ApplicationUser,int>
public class ApplicationSignInManager : SignInManager<ApplicationUser, int>spa在App_Start\Startup.Auth.cs
把配置登錄Cookie的代碼修改成
.netapp.UseCookieAuthentication(new CookieAuthenticationOptions { AuthenticationType = DefaultAuthenticationTypes.ApplicationCookie, LoginPath = new PathString("/Account/Login"), Provider = new CookieAuthenticationProvider { // 當用戶登陸時使應用程序能夠驗證安全戳。 // 這是一項安全功能,當你更改密碼或者向賬戶添加外部登陸名時,將使用此功能。 OnValidateIdentity = SecurityStampValidator.OnValidateIdentity<ApplicationUserManager, ApplicationUser, int>( validateInterval: TimeSpan.FromMinutes(30), regenerateIdentityCallback: (manager, user) => user.GenerateUserIdentityAsync(manager), getUserIdCallback: (claim) => int.Parse(claim.GetUserId())) //regenerateIdentity: (manager, user) => user.GenerateUserIdentityAsync(manager)) } });到此,全部的擴展都已經修改完成,接下來就只要修改相關的View和Controller
在AccountController和ManageController中,
主要是把用到User.Identity.GetUserId()的地方修改成User.Identity.GetUserId<int>();
這樣使得拿到的主鍵由string變成了int
接下來運行程序包管理控制檯,生成數據庫腳本並執行到數據庫
PM> Enable-Migrations
正在檢查上下文的目標是否爲現有數據庫...
已爲項目 IntegerDemo 啓用 Code First 遷移。
PM> Add-Migration FirstInit
正在爲遷移「FirstInit」搭建基架。
此遷移文件的設計器代碼包含當前 Code First 模型的快照。在下一次搭建遷移基架時,將使用此快照計算對模型的更改。若是對要包含在此遷移中的模型進行其餘更改,則您可經過再次運行「Add-Migration FirstInit」從新搭建基架。
PM> Update-Database
指定「-Verbose」標誌以查看應用於目標數據庫的 SQL 語句。
正在應用顯式遷移: [201506240620390_FirstInit]。
正在應用顯式遷移: 201506240620390_FirstInit。
正在運行 Seed 方法。
相關文檔資料
</span><span style="color: #0000ff">public</span><span style="color: #000000"> ApplicationRoleStore(DbContext context) : </span><span style="color: #0000ff">base</span><span style="color: #000000">(context) { } }</span></pre></div>
http://www.asp.net/identity
http://typecastexception.com/post/2014/07/13/ASPNET-Identity-20-Extending-Identity-Models-and-Using-Integer-Keys-Instead-of-Strings.aspx
轉載請標明出處:http://giantliu.com