io.ebean.Query.setBaseTable()方法的使用及代码示例

x33g5p2x  于2022-01-28 转载在 其他  
字(1.0k)|赞(0)|评价(0)|浏览(113)

本文整理了Java中io.ebean.Query.setBaseTable方法的一些代码示例,展示了Query.setBaseTable的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Query.setBaseTable方法的具体详情如下:
包路径:io.ebean.Query
类名称:Query
方法名:setBaseTable

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;
}

相关文章

Query类方法