Postgresql – Entity Framework Core : check if comma-separated string contains any value from list
I have the following table: recipe id | ingredients ----+-------------- 1 | "1,2,3" 2 | "3,4" 3 | "2" 4 | "1,2,3,4" I want to find all recipes containing ingredient "1", "3" or "4". How can I achieve that using…