-
Notifications
You must be signed in to change notification settings - Fork 3.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
LanguageNormalizingExpressionVisitor for VB.NET string comparisons #19681
Conversation
visited.Arguments[1], | ||
(bool)textCompareConstantExpression.Value | ||
? Expression.Constant(StringComparison.OrdinalIgnoreCase) | ||
: Expression.Constant(StringComparison.Ordinal)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we translate these overloads to SQL? Should false
result in the overload without a StringComparison?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we translate these overloads to SQL?
Not at the moment, but we may at some point in the future... PG actually supports str1 > str2 :)
Should false result in the overload without a StringComparison?
I'm not 100% sure... string.Compare without StringComparison is culture-sensitive (as opposed to when passing StringComparison.Ordinal). The docs for VB's CompareString say that the equality operator produces an expression with TextCompare=False, and if I'm reading everything correctly, the default value of Option Compare is binary, which is culture-insensitive. But it would be good to have another set of eyes to be sure.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we've already put a stake in the ground stating that it's OK to ignore culture while querying. Just honoring the case-sensitivity of Option Compare seems sufficient. So, if using the non-StringComparison overload of StringCompare makes it translate to SQL, that sounds more ideal to me.
But I'm also happy to keep it as-is and wait for #1222.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Makes sense, making the change.
src/EFCore/Query/Internal/LanguageNormalizingExpressionVisitor.cs
Outdated
Show resolved
Hide resolved
Part of #14572 |
Added support for string.Equals(a1, a2, OrdinalIgnoreCase), will wait for your feedback on the first question. |
// In VB.NET, str1 = str2 yields CompareString(str1, str2, false) == 0. | ||
// Rewrite this is as a regular equality node. | ||
if (binaryExpression.NodeType == ExpressionType.Equal | ||
|| binaryExpression.NodeType == ExpressionType.NotEqual) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we handle >
, >=
, <
, and <=
too? Or does the compiler never generate those
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Or does the compiler never generate those
Not that I know of. In C#, string > string doesn't compile, and in VB.NET it compiles to CompareString(s1, s2, false) > 0
; we do translate that above to string.Compare(s1, s2)
, and it turns out EF Core does translate that, so we get:
SELECT [b].[Id], [b].[Name]
FROM [Blogs] AS [b]
WHERE CASE
WHEN N'hello' = [b].[Name] THEN 0
WHEN N'hello' > [b].[Name] THEN 1
WHEN N'hello' < [b].[Name] THEN -1
END > 0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note: opened #19733 to do better with that.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should have converted to string.Compare in C# rather than trying to convert to equality.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Any particular reason?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
causes fragmentation in set of optimizations.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm sure I'm just being slow or dumb, but could you take a minute and explain exactly what you mean? Fragmentation where, which set of optimizations...
Should this be fixed in EF6? I am working on migrating a solution to net6 that has a VB project which contains EF queries. I'm getting the EmbeddedOperators.CompareString could not be translated error throughout the VB project, but not in the C# projects. I also note that LanguageNormalizingExpressionVisitor doesn't seem to be present in Microsoft.EntityFrameworkCore.Query.Internal in net6. I'm about to take a look at creating it locally and using it as a solution, but looking at the dates on this item and mention of net5, so a little surprised to find its still an issue? |
Apologies, it seems this is an issue with Linqpad - I copied the query into Linqpad to check it and got the error in there, but on further investigation it appears the error in the application was a different one which I've now tracked back to a mapping issue. |
Fixes #19592
Note that this currently contains no tests, since that would require us to at least reference Microsoft.VisualBasic.dll, which I can do (or even more extreme, create a VB project).
Summary of what this new preprocessing visitor does: