Is there a way to implement OWIN ApplicationUserManager
public class ApplicationUserManager : UserManager<ApplicationUser>
{
}
gives the followin error: The type 'UserQuery.ApplicationUser' cannot be used as type parameter 'TUser' in the generic type or method 'Microsoft.AspNet.Identity.UserManager<TUser>'. There is no implicit reference conversion from 'UserQuery.ApplicationUser' to 'Microsoft.AspNet.Identity.IUser<string>'.
Is there a way to resolve that?
4
votes
Laszlo Tordai
shared this idea