Hello All,
I have a question on query dsl ..
Is the query dsl supports multiple in queries with multiple columns .
Lets say i have a table called Employee.I want to fetch a bulk employees based on firstname.So in sql i use in query
SELECT *
FROM Tabl tabb
WHERE tabb.col IN (abc,bbc,wee,wee)
we can convert the above query to query dsl by using in operation
If i want to select a bulk records based on firstname and last name then i would write some thing like the following
SELECT *
FROM Tabl tabb
WHERE (tabb.col1, tabb.col2) IN ( (1,2), (3,4))
How do we convert the above query in query dsl..?
Is this is supported in query dsl..?
Thanks,
Swati