findSet

findSet 类似于 findList,不同之处在于它返回一个 Set 而不是一个 List。

Set<Customer> customers =
  new QCustomer()
    .email.istartsWith("rob")
    .findSet();