0

one.toManies我只是想知道在使用带有多个左连接的 API的情况下如何应用偏移量和限制查询参数?

我的示例 DSL 是:

withSQL {
        select.from(CustomerTable as cust)
          .leftJoin(SocialNetworkTable as sn).on(cust.id, sn.customerId)
          .leftJoin(MailingTable as ml).on(cust.id, ml.customerId)
}.one(CustomerTable(cust)).toManies(...)

所以我想对 parent 进行分页CustomerTable

你有这样做的最佳实践吗?

4

1 回答 1

0

使用 Skinny ORM 的分页功能会更好(或实现自己的...)。

http://skinny-framework.org/documentation/orm.html

于 2017-05-20T09:03:02.900 回答