本文整理了Java中io.ebean.Query.setBaseTable
方法的一些代码示例,展示了Query.setBaseTable
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Query.setBaseTable
方法的具体详情如下:
包路径:io.ebean.Query
类名称:Query
方法名:setBaseTable
[英]Set the base table to use for this query.
Typically this is used when a table has partitioning and we wish to specify a specific partition/table to query against.
QOrder()
[中]设置用于此查询的基表。
通常情况下,当一个表有分区,并且我们希望指定一个特定的分区/表来查询时,就会使用这种方法。
QOrder()
代码示例来源:origin: org.actframework/act-ebean
@Override
public Query<MODEL_TYPE> setBaseTable(String s) {
q.setBaseTable(s);
return this;
}
代码示例来源:origin: io.ebean/ebean-querybean
/**
* Set the base table to use for this query.
* <p>
* Typically this is used when a table has partitioning and we wish to specify a specific
* partition/table to query against.
* </p>
* <pre>{@code
*
* QOrder()
* .setBaseTable("order_2019_05")
* .status.equalTo(Status.NEW)
* .findList();
*
* }</pre>
*/
public R setBaseTable(String baseTable) {
query.setBaseTable(baseTable);
return root;
}
内容来源于网络,如有侵权,请联系作者删除!