RelationalModelExtensions.AddSequence Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Overload
AddSequence(IMutableModel, String, String) |
Restituisce l'oggetto esistente IMutableSequence con il nome specificato nello schema specificato oppure crea una nuova sequenza con il nome e lo schema specificati. |
AddSequence(IConventionModel, String, String, Boolean) |
Restituisce l'oggetto esistente IMutableSequence con il nome specificato nello schema specificato oppure crea una nuova sequenza con il nome e lo schema specificati. |
AddSequence(IMutableModel, String, String)
Restituisce l'oggetto esistente IMutableSequence con il nome specificato nello schema specificato oppure crea una nuova sequenza con il nome e lo schema specificati.
public static Microsoft.EntityFrameworkCore.Metadata.IMutableSequence AddSequence (this Microsoft.EntityFrameworkCore.Metadata.IMutableModel model, string name, string schema = default);
public static Microsoft.EntityFrameworkCore.Metadata.IMutableSequence AddSequence (this Microsoft.EntityFrameworkCore.Metadata.IMutableModel model, string name, string? schema = default);
static member AddSequence : Microsoft.EntityFrameworkCore.Metadata.IMutableModel * string * string -> Microsoft.EntityFrameworkCore.Metadata.IMutableSequence
<Extension()>
Public Function AddSequence (model As IMutableModel, name As String, Optional schema As String = Nothing) As IMutableSequence
Parametri
- model
- IMutableModel
Modello a cui aggiungere la sequenza.
- name
- String
Nome della sequenza.
- schema
- String
Nome dello schema o null
per usare lo schema predefinito.
Restituisce
Sequenza.
Si applica a
AddSequence(IConventionModel, String, String, Boolean)
Restituisce l'oggetto esistente IMutableSequence con il nome specificato nello schema specificato oppure crea una nuova sequenza con il nome e lo schema specificati.
public static Microsoft.EntityFrameworkCore.Metadata.IConventionSequence AddSequence (this Microsoft.EntityFrameworkCore.Metadata.IConventionModel model, string name, string schema = default, bool fromDataAnnotation = false);
public static Microsoft.EntityFrameworkCore.Metadata.IConventionSequence? AddSequence (this Microsoft.EntityFrameworkCore.Metadata.IConventionModel model, string name, string? schema = default, bool fromDataAnnotation = false);
static member AddSequence : Microsoft.EntityFrameworkCore.Metadata.IConventionModel * string * string * bool -> Microsoft.EntityFrameworkCore.Metadata.IConventionSequence
<Extension()>
Public Function AddSequence (model As IConventionModel, name As String, Optional schema As String = Nothing, Optional fromDataAnnotation As Boolean = false) As IConventionSequence
Parametri
- model
- IConventionModel
Modello a cui aggiungere la sequenza.
- name
- String
Nome della sequenza.
- schema
- String
Nome dello schema o null
per usare lo schema predefinito.
- fromDataAnnotation
- Boolean
Indica se la configurazione è stata specificata utilizzando un'annotazione dati.
Restituisce
Sequenza.