public static interface ReactiveSelectOperation.SelectWithTable<T> extends ReactiveSelectOperation.SelectWithQuery<T>
Modifier and Type | Method and Description |
---|---|
ReactiveSelectOperation.SelectWithProjection<T> |
from(org.springframework.data.relational.core.sql.SqlIdentifier table)
Explicitly set the
name of the table on which to perform the query. |
default ReactiveSelectOperation.SelectWithProjection<T> |
from(String table)
Explicitly set the
name of the table on which to perform the query. |
matching
default ReactiveSelectOperation.SelectWithProjection<T> from(String table)
name
of the table on which to perform the query.
Skip this step to use the default table derived from the domain type
.
table
- name
of the table; must not be null or empty.ReactiveSelectOperation.SelectWithProjection
.IllegalArgumentException
- if table
is null or empty.ReactiveSelectOperation.SelectWithProjection
ReactiveSelectOperation.SelectWithProjection<T> from(org.springframework.data.relational.core.sql.SqlIdentifier table)
name
of the table on which to perform the query.
Skip this step to use the default table derived from the domain type
.
table
- name
of the table; must not be null.ReactiveSelectOperation.SelectWithProjection
.IllegalArgumentException
- if table
is null.ReactiveSelectOperation.SelectWithProjection
Copyright © 2018–2022 Pivotal Software, Inc.. All rights reserved.