-
Notifications
You must be signed in to change notification settings - Fork 257
Closed
Milestone
Description
Does EF Core/Npgsql have a way to translate a LIKE ANY statement?
For example, translating from this:
IQueryable<string> source; // => "cat"
string[] items = new string[] { "a", "b", "c" };
source.Where(x => items.Any(x.StartsWith));to this:
WHERE 'cat' LIKE ANY('{a%,b%,c%}');Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels