I have an object which contains many properties and i want to fetch the value by applying some conditions like the properties are name , date , year , jobTime
Now i want to fetch the jobTime when year = 2019 and name = “saad”
How can i do that , the documentation says
String whereClause = "age = 47";
DataQueryBuilder queryBuilder = DataQueryBuilder.create();
queryBuilder.setWhereClause( whereClause );
in whereClause there i one request
can we get data based on 2 or 3 request like
String whereClause = "name = "Saad" && year = 2019"
Thanks