findSet
findSet is similar to findList except that it returns a Set rather than a List.
Set<Customer> customers =
new QCustomer()
.email.istartsWith("rob")
.findSet();
findSet is similar to findList except that it returns a Set rather than a List.
Set<Customer> customers =
new QCustomer()
.email.istartsWith("rob")
.findSet();