I am working with the new ASP.NET Identity (RTM) and I was wondering how would I go on about changing registering and login from being a UserName to an Email.
The id
Change the UserValidator property for your UserManager object:
public class UserManager : UserManager
{
public IUserStore Users { get; private set; }
public UserManager(IUserStore store) : base(store)
{
Users = store;
UserValidator = new UserValidator(this) {AllowOnlyAlphanumericUserNames = false};
}
}