Skip to content

Commit

Permalink
Fix old-style code
Browse files Browse the repository at this point in the history
  • Loading branch information
nakamura-to committed Nov 28, 2021
1 parent 1e65bc9 commit 182d276
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions content/ja/docs/Reference/Query/QueryDsl/select.md
Expand Up @@ -306,9 +306,9 @@ select t0_.ADDRESS_ID, t0_.STREET, t0_.VERSION from ADDRESS as t0_
JOINしたテーブルのカラムをSELECT句に含める場合は`include`を呼び出します。

```kotlin
val a = Address.meta
val e = Employee.meta
val d = Department.meta
val a = Meta.address
val e = Meta.employee
val d = Meta.department

val query: Query<EntityStore> = QueryDsl.from(a)
.innerJoin(e) {
Expand Down Expand Up @@ -350,9 +350,9 @@ val departmentIdEmployees: Map<Int, Set<Employee>> = store.oneToManyById(d, e)
JOINしたテーブル全てのカラムをSELECT句に含めたい場合は、`includeAll`を呼び出します。

```kotlin
val a = Address.meta
val e = Employee.meta
val d = Department.meta
val a = Meta.address
val e = Meta.employee
val d = Meta.department

val query: Query<EntityStore> = QueryDsl.from(a)
.innerJoin(e) {
Expand Down

0 comments on commit 182d276

Please sign in to comment.