I use Asp.Net Core Identity Nuget package for user management. But when I create a new user, its LockoutEnabled property will be set to "TRUE". This means a new user will be locked after successful create.
I've found this AllowedForNewUsers property but have no idea to set it to "FALSE".
How can I config to create a new user that not be locked? Or how can I set AllowedForNewUsers to "FALSE" in my project? Thanks.