We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
_ = await ctx.Blogs .Where(b => b.Name.StartsWith("hello")) .ToListAsync();
SQL:
SELECT [b].[id], [b].[name] FROM [blogs] AS [b] WHERE [b].[name] IS NOT NULL AND ([b].[name] LIKE N'hello%')
/cc @maumar
The text was updated successfully, but these errors were encountered:
Ah, seems like that bit in QueryOptimizingExpressionVisitor I always forget (and complain) about.
Sorry, something went wrong.
Currently EFCore emits
SELECT [b].[BlogId], [b].[Name] FROM [Blogs] AS [b] WHERE [b].[Name] LIKE N'hello%'
as it should :)
Thanks @ranma42! Done as part of #31482
roji
No branches or pull requests
SQL:
/cc @maumar
The text was updated successfully, but these errors were encountered: