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