You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have installed the package as mentioned in the readme. And we were able to create the user as well. and we are trying to delete the user by using the "DeleteAsync" method as shown below,
var applicationUser = await _userManager.FindByNameAsync("[email protected]");
var result = await _userManager.DeleteAsync(user);
But the method returns the following error,
$exception {Npgsql.PostgresException (0x80004005): 42883: operator does not exist: uuid = text
Now we have downloaded the source code and We have debugged the code and found that the "Tostring()" conversion while adding the parameter causing the issue.
If we remove the ToString() then its works as expected. Please Advice.
Thanks and Regards,
Gopi.S
The text was updated successfully, but these errors were encountered:
Hi,
We have installed the package as mentioned in the readme. And we were able to create the user as well. and we are trying to delete the user by using the "DeleteAsync" method as shown below,
var applicationUser = await _userManager.FindByNameAsync("[email protected]");
var result = await _userManager.DeleteAsync(user);
But the method returns the following error,
Now we have downloaded the source code and We have debugged the code and found that the "Tostring()" conversion while adding the parameter causing the issue.
If we remove the ToString() then its works as expected. Please Advice.
Thanks and Regards,
Gopi.S
The text was updated successfully, but these errors were encountered: