String[] columns = criteriaQuery.getColumnsUsingProjection(criteria, propertyName);
String result = StringHelper.join(
" and ",
StringHelper.suffix( columns, " is null" )
);
if (columns.length>1) result = '(" + result + ')";
return result;
//TODO: get SQL rendering out of this package!