All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.easy.query.api4j.select.extension.queryable.SQLJoinable1 Maven / Gradle / Ivy

There is a newer version: 2.3.3
Show newest version
package com.easy.query.api4j.select.extension.queryable;

import com.easy.query.api4j.select.Queryable;
import com.easy.query.api4j.select.Queryable2;
import com.easy.query.api4j.sql.SQLWherePredicate;
import com.easy.query.core.expression.lambda.SQLExpression2;

/**
 * create time 2023/8/17 11:19
 * 文件说明
 *
 * @author xuejiaming
 */
public interface SQLJoinable1 {

     Queryable2 leftJoin(Class joinClass, SQLExpression2, SQLWherePredicate> on);

     Queryable2 leftJoin(Queryable joinQueryable, SQLExpression2, SQLWherePredicate> on);

     Queryable2 rightJoin(Class joinClass, SQLExpression2, SQLWherePredicate> on);

     Queryable2 rightJoin(Queryable joinQueryable, SQLExpression2, SQLWherePredicate> on);

     Queryable2 innerJoin(Class joinClass, SQLExpression2, SQLWherePredicate> on);

     Queryable2 innerJoin(Queryable joinQueryable, SQLExpression2, SQLWherePredicate> on);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy