I have this Criteria:
def myList = BAS.createCriteria().list () {
projections { distinct ( "id" )
property("date")
property("id")
}
carList{
eq("login",login)
}
ccList{
eq("cmd",false)
}
order("date","desc")
}
I want to add also null as a criteria for "cmd". Is there an OR to be used in my case?
Thanks