Search code examples
asp.net-coreasp.net-identity

How to access Identity methods without creating managers


I am trying to use some functionalities from UserManager, like :

GeneratePasswordResetTokenAsync, ValidateTokenAsync and GenerateEmailConfirmationTokenAsync

But I am not using Identity structure. I created my own database and User manager.

Is that possible to access those methods in that way? Maybe with a thin UserManager implementation ? Or should I develope all that methods by my own?

Thanks


Solution

  • With Identity source being available on GitHub, why not check out the methods you need and implement them best way it fits your architecture?