I\'m trying to use the new Asp.Net Identity system. I\'ve searched this in asp.net site and able to find a tutorial here.
I\'ve created Register>
var result = await UserManager.CreateAsync(user, register.Password);
The UserManager in the above statement is not a Class as I've expected. Its a property of type UserManager.
So, at the beginning just declared a property as
public UserManager UserManager { get; private set; }
And now I can use the Async version for creating users. The following statement works.
var result = await UserManager.CreateAsync(user, register.Password);