From a4a812dde150b3e1a4c6edcfb6aaac56c33f2533 Mon Sep 17 00:00:00 2001 From: Suomm <1474983351@qq.com> Date: Fri, 28 Jul 2023 12:13:36 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B7=BB=E5=8A=A0=20Join=20=E6=9F=A5?= =?UTF-8?q?=E8=AF=A2=E6=9E=84=E5=BB=BA=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../core/activerecord/query/JoinBuilder.java | 55 +++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 mybatis-flex-core/src/main/java/com/mybatisflex/core/activerecord/query/JoinBuilder.java diff --git a/mybatis-flex-core/src/main/java/com/mybatisflex/core/activerecord/query/JoinBuilder.java b/mybatis-flex-core/src/main/java/com/mybatisflex/core/activerecord/query/JoinBuilder.java new file mode 100644 index 00000000..862c2795 --- /dev/null +++ b/mybatis-flex-core/src/main/java/com/mybatisflex/core/activerecord/query/JoinBuilder.java @@ -0,0 +1,55 @@ +/* + * Copyright (c) 2022-2023, Mybatis-Flex (fuhai999@gmail.com). + *

+ * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + *

+ * http://www.apache.org/licenses/LICENSE-2.0 + *

+ * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.mybatisflex.core.activerecord.query; + +import com.mybatisflex.core.query.CPI; +import com.mybatisflex.core.query.Join; +import com.mybatisflex.core.query.QueryCondition; +import com.mybatisflex.core.query.RawFragment; + +/** + * Lambda joins 构建器。 + * + * @author 王帅 + * @since 2023-07-28 + */ +public class JoinBuilder> { + + private final R queryModel; + private final Join join; + + public JoinBuilder(R queryModel, Join join) { + this.queryModel = queryModel; + this.join = join; + } + + public JoinBuilder as(String alias) { + CPI.getJoinQueryTable(join).as(alias); + return this; + } + + public R on(String on) { + join.on(new RawFragment(on)); + return queryModel; + } + + public R on(QueryCondition on) { + join.on(on); + return queryModel; + } + +}