Last post Oct 20, 2013 07:27 AM by Pradip26
Member
23 Points
77 Posts
Oct 20, 2013 06:53 AM|giangnt|LINK
namespace Microsoft.AspNet.Identity.EntityFramework { public class IdentityUser : IUser { public IdentityUser(); public IdentityUser(string userName); public virtual ICollection<IdentityUserClaim> Claims { get; } public virtual string Id { get; set; } public virtual ICollection<IdentityUserLogin> Logins { get; } public virtual string PasswordHash { get; set; } public virtual ICollection<IdentityUserRole> Roles { get; } public virtual string SecurityStamp { get; set; } public virtual string UserName { get; set; } } }
This is new membership system of ASP.net ( go with Visual Studio 2013 released ).
The Datatype of ID is string. How to change it to int ( also auto increment).
The table name reflected of this table is "AspNetUsers" how to make it become "Users"
50 Points
97 Posts
Oct 20, 2013 07:27 AM|Pradip26|LINK
REfer
http://forums.asp.net/t/1918366.aspx
Member
23 Points
77 Posts
Change data type of ASP.net Identity
Oct 20, 2013 06:53 AM|giangnt|LINK
This is new membership system of ASP.net ( go with Visual Studio 2013 released ).
The Datatype of ID is string. How to change it to int ( also auto increment).
The table name reflected of this table is "AspNetUsers" how to make it become "Users"
Member
50 Points
97 Posts
Re: Change data type of ASP.net Identity
Oct 20, 2013 07:27 AM|Pradip26|LINK
REfer
http://forums.asp.net/t/1918366.aspx