From 19d48aa08966d074b3bd601da11d4f888e508703 Mon Sep 17 00:00:00 2001 From: kihwankim Date: Mon, 7 Oct 2024 21:16:16 +0900 Subject: [PATCH] docs: delete meaningless content --- docs/en/jpql-with-kotlin-jdsl/statements.md | 9 --------- docs/ko/jpql-with-kotlin-jdsl/statements.md | 10 ---------- 2 files changed, 19 deletions(-) diff --git a/docs/en/jpql-with-kotlin-jdsl/statements.md b/docs/en/jpql-with-kotlin-jdsl/statements.md index 4eb15d1a3..82db62d29 100644 --- a/docs/en/jpql-with-kotlin-jdsl/statements.md +++ b/docs/en/jpql-with-kotlin-jdsl/statements.md @@ -130,15 +130,6 @@ from( Use `selectFrom()` and pass [Entity](entities.md) and [Join](statements.md#Join-For-SelectFrom) to specify the entities for selection. In the `selectFrom()` function you can create the select and from clause at once. - -```kotlin -// It can infer the result type. -selectFrom(path(Author::class)) - -// It cannot infer the result type. -selectFrom(path(Author::class)) -``` - 'SelectFrom()' has the same effect as calling the existing 'select()' and 'from()', respectively. ```kotlin diff --git a/docs/ko/jpql-with-kotlin-jdsl/statements.md b/docs/ko/jpql-with-kotlin-jdsl/statements.md index 4c36737c3..6b69e9ef0 100644 --- a/docs/ko/jpql-with-kotlin-jdsl/statements.md +++ b/docs/ko/jpql-with-kotlin-jdsl/statements.md @@ -132,16 +132,6 @@ from( select statement의 select clause와 from clause를 한 번에 만들기 위해, `selectFrom()`을 이용할 수 있습니다. `selectFrom()`은 [Entity](entities.md)와 [Join](statements.md#Join-For-SelectFrom)을 파라미터로 받아 어떤 entity를 통해 조회가 되는지 표현합니다. - - -```kotlin -// It can infer the result type. -selectFrom(path(Author::class)) - -// It cannot infer the result type. -selectFrom(path(Author::class)) -``` - `selectFrom()`은 기존의 `select()`, `from()`을 각각 호출하는 것과 동일한 효과를 가져옵니다. ```kotlin