Problem with Devart.Data.PostgreSql.EFCore 9.1.33.10
Hello,
i just started to upgrade an application to net10 and i get following error:
System.TypeLoadException: Method 'VisitRightJoin' in type 'System.Data.Common.CommandTrees.PgSqlExpressionCloner' from assembly 'Devart.Data.PostgreSql.Entity.EFCore, Version=9.1.33.0, Culture=neutral, PublicKeyToken=09af7300eec23701' does not have an implementation.
The error occures in my custom user store when trying to find the user by name.
This code is called and then the error occures:
return await _context.PersonSet.AsNoTracking()
.SingleOrDefaultAsync(u => u.UserName.ToLower().Equals(normalizedUserName.ToLower()), cancellationToken);