R
- the type of model produced by this builderpublic class SelectDSL<R> extends Object
Modifier and Type | Method and Description |
---|---|
R |
build() |
static QueryExpressionDSL.FromGatherer<SelectModel> |
select(BasicColumn... selectList) |
static <R> QueryExpressionDSL.FromGatherer<R> |
select(Function<SelectModel,R> adapterFunction,
BasicColumn... selectList) |
static QueryExpressionDSL.FromGatherer<SelectModel> |
selectDistinct(BasicColumn... selectList) |
static <R> QueryExpressionDSL.FromGatherer<R> |
selectDistinct(Function<SelectModel,R> adapterFunction,
BasicColumn... selectList) |
static <T> QueryExpressionDSL.FromGatherer<MyBatis3SelectModelAdapter<T>> |
selectDistinctWithMapper(Function<SelectStatementProvider,T> mapperMethod,
BasicColumn... selectList) |
static <T> QueryExpressionDSL.FromGatherer<MyBatis3SelectModelAdapter<T>> |
selectWithMapper(Function<SelectStatementProvider,T> mapperMethod,
BasicColumn... selectList) |
public static QueryExpressionDSL.FromGatherer<SelectModel> select(BasicColumn... selectList)
public static <R> QueryExpressionDSL.FromGatherer<R> select(Function<SelectModel,R> adapterFunction, BasicColumn... selectList)
public static QueryExpressionDSL.FromGatherer<SelectModel> selectDistinct(BasicColumn... selectList)
public static <R> QueryExpressionDSL.FromGatherer<R> selectDistinct(Function<SelectModel,R> adapterFunction, BasicColumn... selectList)
public static <T> QueryExpressionDSL.FromGatherer<MyBatis3SelectModelAdapter<T>> selectWithMapper(Function<SelectStatementProvider,T> mapperMethod, BasicColumn... selectList)
public static <T> QueryExpressionDSL.FromGatherer<MyBatis3SelectModelAdapter<T>> selectDistinctWithMapper(Function<SelectStatementProvider,T> mapperMethod, BasicColumn... selectList)
public R build()
Copyright © 2016–2017 MyBatis.org. All rights reserved.