User-590094232 posted
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"