标签:
在实际使用中对ASP.NET MVC 5 Identity 的扩展,首先是IdentityUser
public class AppUser : IdentityUser<Guid, AppUserLogin, AppUserRole, AppUserClaim>
继承自public class IdentityUser<TKey, TLogin, TRole, TClaim> : IUser<TKey> 类
其中,
所有Primary key 都使用Guid,另外在每新派生类中可以自定义字段
标签:
原文地址:http://www.cnblogs.com/BlueEye/p/5123367.html