SqlServerMigrationsSqlGenerator.SequenceOptions Metoda
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Přetížení
SequenceOptions(String, String, SequenceOperation, IModel, MigrationCommandListBuilder) |
Vygeneruje fragment SQL konfigurující sekvenci s danými možnostmi. |
SequenceOptions(String, String, Int32, Nullable<Int64>, Nullable<Int64>, Boolean, IModel, MigrationCommandListBuilder) |
Vygeneruje fragment SQL konfigurující sekvenci s danými možnostmi. |
SequenceOptions(String, String, SequenceOperation, IModel, MigrationCommandListBuilder)
Vygeneruje fragment SQL konfigurující sekvenci s danými možnostmi.
protected override void SequenceOptions (string schema, string name, Microsoft.EntityFrameworkCore.Migrations.Operations.SequenceOperation operation, Microsoft.EntityFrameworkCore.Metadata.IModel model, Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder builder);
protected override void SequenceOptions (string? schema, string name, Microsoft.EntityFrameworkCore.Migrations.Operations.SequenceOperation operation, Microsoft.EntityFrameworkCore.Metadata.IModel? model, Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder builder);
override this.SequenceOptions : string * string * Microsoft.EntityFrameworkCore.Migrations.Operations.SequenceOperation * Microsoft.EntityFrameworkCore.Metadata.IModel * Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder -> unit
Protected Overrides Sub SequenceOptions (schema As String, name As String, operation As SequenceOperation, model As IModel, builder As MigrationCommandListBuilder)
Parametry
- schema
- String
Schéma, které obsahuje sekvenci, nebo null
pro použití výchozího schématu.
- name
- String
Název sekvence.
- operation
- SequenceOperation
Možnosti sekvence.
- model
- IModel
Cílový model, který může být null
, pokud operace existují bez modelu.
- builder
- MigrationCommandListBuilder
Tvůrce příkazů, který se má použít k přidání fragmentu SQL.
Platí pro
SequenceOptions(String, String, Int32, Nullable<Int64>, Nullable<Int64>, Boolean, IModel, MigrationCommandListBuilder)
Vygeneruje fragment SQL konfigurující sekvenci s danými možnostmi.
protected override void SequenceOptions (string schema, string name, int increment, long? minimumValue, long? maximumValue, bool cycle, Microsoft.EntityFrameworkCore.Metadata.IModel model, Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder builder);
override this.SequenceOptions : string * string * int * Nullable<int64> * Nullable<int64> * bool * Microsoft.EntityFrameworkCore.Metadata.IModel * Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder -> unit
Protected Overrides Sub SequenceOptions (schema As String, name As String, increment As Integer, minimumValue As Nullable(Of Long), maximumValue As Nullable(Of Long), cycle As Boolean, model As IModel, builder As MigrationCommandListBuilder)
Parametry
- schema
- String
Schéma, které obsahuje sekvenci, nebo null
pro použití výchozího schématu.
- name
- String
Název sekvence.
- increment
- Int32
Částka, o kterou se má zvýšit, aby se vygenerovala další hodnota v sekvenci.
Minimální hodnota podporovaná v sekvenci nebo null
pokud nebyla zadána žádná.
Maximální hodnota podporovaná v sekvenci nebo null
pokud nebyla zadána žádná.
- cycle
- Boolean
Určuje, zda se sekvence spustí znovu po dosažení maximální hodnoty.
- model
- IModel
Cílový model, který může být null
, pokud operace existují bez modelu.
- builder
- MigrationCommandListBuilder
Tvůrce příkazů, který se má použít k přidání fragmentu SQL.
Platí pro
Entity Framework