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("test@test.com");
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
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("test@test.com");
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