私はこの基準を持っています:
def myList = BAS.createCriteria().list () {
projections { distinct ( "id" )
property("date")
property("id")
}
carList{
eq("login",login)
}
ccList{
eq("cmd",false)
}
order("date","desc")
}
「cmd」の条件としてnullも追加したいです。私の場合に使用する OR はありますか?
ありがとう