2
I’m trying to insert a user that already exists in another database, but in the previous database, there was no validation of the Entity framework, so for example, the password could be 123456.
So when I use this command:
var resultado = _userManager.CreateAsync(user, usuario.Senha.Trim()).Result;
But there it returns the error that the password is not validated, that characters are missing, and so on. How can I get around, just to enter this data ?