SqlServerMigrationsSqlGenerator.ColumnDefinition Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
ColumnDefinition(String, String, String, Type, String, Nullable<Boolean>, Nullable<Int32>, Nullable<Boolean>, Boolean, Boolean, Object, String, String, Boolean, IAnnotatable, IModel, MigrationCommandListBuilder)
Génère un fragment SQL pour une définition de colonne pour les métadonnées de colonne données.
protected virtual void ColumnDefinition (string schema, string table, string name, Type clrType, string type, bool? unicode, int? maxLength, bool? fixedLength, bool rowVersion, bool nullable, object defaultValue, string defaultValueSql, string computedColumnSql, bool identity, Microsoft.EntityFrameworkCore.Infrastructure.IAnnotatable annotatable, Microsoft.EntityFrameworkCore.Metadata.IModel model, Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder builder);
override this.ColumnDefinition : string * string * string * Type * string * Nullable<bool> * Nullable<int> * Nullable<bool> * bool * bool * obj * string * string * bool * Microsoft.EntityFrameworkCore.Infrastructure.IAnnotatable * Microsoft.EntityFrameworkCore.Metadata.IModel * Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder -> unit
Protected Overridable Sub ColumnDefinition (schema As String, table As String, name As String, clrType As Type, type As String, unicode As Nullable(Of Boolean), maxLength As Nullable(Of Integer), fixedLength As Nullable(Of Boolean), rowVersion As Boolean, nullable As Boolean, defaultValue As Object, defaultValueSql As String, computedColumnSql As String, identity As Boolean, annotatable As IAnnotatable, model As IModel, builder As MigrationCommandListBuilder)
Paramètres
- schema
- String
Schéma qui contient la table ou null
pour utiliser le schéma par défaut.
- table
- String
Table qui contient la colonne.
- name
- String
Nom de la colonne.
- type
- String
Type de base de données/magasin pour la colonne, ou null
si aucun n’a été spécifié.
Indique si la colonne peut contenir des données Unicode, ou null
si cela n’est pas applicable ou non spécifié.
Quantité maximale de données que la colonne peut contenir, ou null
si cela n’est pas applicable ou n’est pas spécifié.
- rowVersion
- Boolean
Indique si cette colonne est un jeton d’accès concurrentiel automatique, tel qu’un SQL Server timestamp/rowversion.
- nullable
- Boolean
Indique si la colonne peut stocker NULL
des valeurs.
- defaultValue
- Object
Valeur par défaut de la colonne.
- defaultValueSql
- String
Expression SQL à utiliser pour la contrainte par défaut de la colonne.
- computedColumnSql
- String
Expression SQL à utiliser pour calculer la valeur de colonne.
- identity
- Boolean
Indique si la colonne est une colonne Identity.
- annotatable
- IAnnotatable
MigrationOperation à utiliser pour rechercher les annotations personnalisées.
- model
- IModel
Modèle cible qui peut être null
si les opérations existent sans modèle.
- builder
- MigrationCommandListBuilder
Générateur de commandes à utiliser pour ajouter le fragment SQL.
S’applique à
ColumnDefinition(String, String, String, Type, String, Nullable<Boolean>, Nullable<Int32>, Nullable<Boolean>, Boolean, Boolean, Object, String, String, IAnnotatable, IModel, MigrationCommandListBuilder)
Génère un fragment SQL pour une définition de colonne pour les métadonnées de colonne données.
protected override void ColumnDefinition (string schema, string table, string name, Type clrType, string type, bool? unicode, int? maxLength, bool? fixedLength, bool rowVersion, bool nullable, object defaultValue, string defaultValueSql, string computedColumnSql, Microsoft.EntityFrameworkCore.Infrastructure.IAnnotatable annotatable, Microsoft.EntityFrameworkCore.Metadata.IModel model, Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder builder);
override this.ColumnDefinition : string * string * string * Type * string * Nullable<bool> * Nullable<int> * Nullable<bool> * bool * bool * obj * string * string * Microsoft.EntityFrameworkCore.Infrastructure.IAnnotatable * Microsoft.EntityFrameworkCore.Metadata.IModel * Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder -> unit
Protected Overrides Sub ColumnDefinition (schema As String, table As String, name As String, clrType As Type, type As String, unicode As Nullable(Of Boolean), maxLength As Nullable(Of Integer), fixedLength As Nullable(Of Boolean), rowVersion As Boolean, nullable As Boolean, defaultValue As Object, defaultValueSql As String, computedColumnSql As String, annotatable As IAnnotatable, model As IModel, builder As MigrationCommandListBuilder)
Paramètres
- schema
- String
Schéma qui contient la table ou null
pour utiliser le schéma par défaut.
- table
- String
Table qui contient la colonne.
- name
- String
Nom de la colonne.
- type
- String
Type de base de données/magasin pour la colonne, ou null
si aucun n’a été spécifié.
Indique si la colonne peut contenir des données Unicode, ou null
si cela n’est pas applicable ou non spécifié.
Quantité maximale de données que la colonne peut contenir, ou null
si cela n’est pas applicable ou n’est pas spécifié.
- rowVersion
- Boolean
Indique si cette colonne est un jeton d’accès concurrentiel automatique, tel qu’un SQL Server timestamp/rowversion.
- nullable
- Boolean
Indique si la colonne peut stocker NULL
des valeurs.
- defaultValue
- Object
Valeur par défaut de la colonne.
- defaultValueSql
- String
Expression SQL à utiliser pour la contrainte par défaut de la colonne.
- computedColumnSql
- String
Expression SQL à utiliser pour calculer la valeur de colonne.
- annotatable
- IAnnotatable
MigrationOperation à utiliser pour rechercher les annotations personnalisées.
- model
- IModel
Modèle cible qui peut être null
si les opérations existent sans modèle.
- builder
- MigrationCommandListBuilder
Générateur de commandes à utiliser pour ajouter le fragment SQL.
S’applique à
ColumnDefinition(String, String, String, Type, String, Nullable<Boolean>, Nullable<Int32>, Boolean, Boolean, Object, String, String, Boolean, IAnnotatable, IModel, MigrationCommandListBuilder)
Attention
Use the overload with most parameters
Génère un fragment SQL pour une définition de colonne pour les métadonnées de colonne données.
protected virtual void ColumnDefinition (string schema, string table, string name, Type clrType, string type, bool? unicode, int? maxLength, bool rowVersion, bool nullable, object defaultValue, string defaultValueSql, string computedColumnSql, bool identity, Microsoft.EntityFrameworkCore.Infrastructure.IAnnotatable annotatable, Microsoft.EntityFrameworkCore.Metadata.IModel model, Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder builder);
[System.Obsolete("Use the overload with most parameters")]
protected virtual void ColumnDefinition (string schema, string table, string name, Type clrType, string type, bool? unicode, int? maxLength, bool rowVersion, bool nullable, object defaultValue, string defaultValueSql, string computedColumnSql, bool identity, Microsoft.EntityFrameworkCore.Infrastructure.IAnnotatable annotatable, Microsoft.EntityFrameworkCore.Metadata.IModel model, Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder builder);
override this.ColumnDefinition : string * string * string * Type * string * Nullable<bool> * Nullable<int> * bool * bool * obj * string * string * bool * Microsoft.EntityFrameworkCore.Infrastructure.IAnnotatable * Microsoft.EntityFrameworkCore.Metadata.IModel * Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder -> unit
[<System.Obsolete("Use the overload with most parameters")>]
override this.ColumnDefinition : string * string * string * Type * string * Nullable<bool> * Nullable<int> * bool * bool * obj * string * string * bool * Microsoft.EntityFrameworkCore.Infrastructure.IAnnotatable * Microsoft.EntityFrameworkCore.Metadata.IModel * Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder -> unit
Protected Overridable Sub ColumnDefinition (schema As String, table As String, name As String, clrType As Type, type As String, unicode As Nullable(Of Boolean), maxLength As Nullable(Of Integer), rowVersion As Boolean, nullable As Boolean, defaultValue As Object, defaultValueSql As String, computedColumnSql As String, identity As Boolean, annotatable As IAnnotatable, model As IModel, builder As MigrationCommandListBuilder)
Paramètres
- schema
- String
Schéma qui contient la table ou null
pour utiliser le schéma par défaut.
- table
- String
Table qui contient la colonne.
- name
- String
Nom de la colonne.
- type
- String
Type de base de données/magasin pour la colonne, ou null
si aucun n’a été spécifié.
Indique si la colonne peut contenir des données Unicode, ou null
si cela n’est pas applicable ou non spécifié.
Quantité maximale de données que la colonne peut contenir, ou null
si cela n’est pas applicable ou n’est pas spécifié.
- rowVersion
- Boolean
Indique si cette colonne est un jeton d’accès concurrentiel automatique, tel qu’un SQL Server timestamp/rowversion.
- nullable
- Boolean
Indique si la colonne peut stocker NULL
des valeurs.
- defaultValue
- Object
Valeur par défaut de la colonne.
- defaultValueSql
- String
Expression SQL à utiliser pour la contrainte par défaut de la colonne.
- computedColumnSql
- String
Expression SQL à utiliser pour calculer la valeur de colonne.
- identity
- Boolean
Indique si la colonne est une colonne Identity.
- annotatable
- IAnnotatable
MigrationOperation à utiliser pour rechercher les annotations personnalisées.
- model
- IModel
Modèle cible qui peut être null
si les opérations existent sans modèle.
- builder
- MigrationCommandListBuilder
Générateur de commandes à utiliser pour ajouter le fragment SQL.
- Attributs
S’applique à
ColumnDefinition(String, String, String, ColumnOperation, IModel, MigrationCommandListBuilder)
Génère un fragment SQL pour une définition de colonne pour les métadonnées de colonne données.
protected override void ColumnDefinition (string schema, string table, string name, Microsoft.EntityFrameworkCore.Migrations.Operations.ColumnOperation operation, Microsoft.EntityFrameworkCore.Metadata.IModel model, Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder builder);
protected override void ColumnDefinition (string? schema, string table, string name, Microsoft.EntityFrameworkCore.Migrations.Operations.ColumnOperation operation, Microsoft.EntityFrameworkCore.Metadata.IModel? model, Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder builder);
override this.ColumnDefinition : string * string * string * Microsoft.EntityFrameworkCore.Migrations.Operations.ColumnOperation * Microsoft.EntityFrameworkCore.Metadata.IModel * Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder -> unit
Protected Overrides Sub ColumnDefinition (schema As String, table As String, name As String, operation As ColumnOperation, model As IModel, builder As MigrationCommandListBuilder)
Paramètres
- schema
- String
Schéma qui contient la table ou null
pour utiliser le schéma par défaut.
- table
- String
Table qui contient la colonne.
- name
- String
Nom de la colonne.
- operation
- ColumnOperation
Métadonnées de colonne.
- model
- IModel
Modèle cible qui peut être null
si les opérations existent sans modèle.
- builder
- MigrationCommandListBuilder
Générateur de commandes à utiliser pour ajouter le fragment SQL.
S’applique à
ColumnDefinition(AddColumnOperation, IModel, MigrationCommandListBuilder)
Génère un fragment SQL pour une définition de colonne dans un AddColumnOperation.
protected override void ColumnDefinition (Microsoft.EntityFrameworkCore.Migrations.Operations.AddColumnOperation operation, Microsoft.EntityFrameworkCore.Metadata.IModel model, Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder builder);
override this.ColumnDefinition : Microsoft.EntityFrameworkCore.Migrations.Operations.AddColumnOperation * Microsoft.EntityFrameworkCore.Metadata.IModel * Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder -> unit
Protected Overrides Sub ColumnDefinition (operation As AddColumnOperation, model As IModel, builder As MigrationCommandListBuilder)
Paramètres
- operation
- AddColumnOperation
Opération.
- model
- IModel
Modèle cible qui peut être null
si les opérations existent sans modèle.
- builder
- MigrationCommandListBuilder
Générateur de commandes à utiliser pour ajouter le fragment SQL.
S’applique à
ColumnDefinition(String, String, String, Type, String, Nullable<Boolean>, Nullable<Int32>, Boolean, Boolean, Object, String, String, IAnnotatable, IModel, MigrationCommandListBuilder)
Génère un fragment SQL pour une définition de colonne pour les métadonnées de colonne données.
protected override void ColumnDefinition (string schema, string table, string name, Type clrType, string type, bool? unicode, int? maxLength, bool rowVersion, bool nullable, object defaultValue, string defaultValueSql, string computedColumnSql, Microsoft.EntityFrameworkCore.Infrastructure.IAnnotatable annotatable, Microsoft.EntityFrameworkCore.Metadata.IModel model, Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder builder);
override this.ColumnDefinition : string * string * string * Type * string * Nullable<bool> * Nullable<int> * bool * bool * obj * string * string * Microsoft.EntityFrameworkCore.Infrastructure.IAnnotatable * Microsoft.EntityFrameworkCore.Metadata.IModel * Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder -> unit
Protected Overrides Sub ColumnDefinition (schema As String, table As String, name As String, clrType As Type, type As String, unicode As Nullable(Of Boolean), maxLength As Nullable(Of Integer), rowVersion As Boolean, nullable As Boolean, defaultValue As Object, defaultValueSql As String, computedColumnSql As String, annotatable As IAnnotatable, model As IModel, builder As MigrationCommandListBuilder)
Paramètres
- schema
- String
Schéma qui contient la table ou null
pour utiliser le schéma par défaut.
- table
- String
Table qui contient la colonne.
- name
- String
Nom de la colonne.
- type
- String
Type de base de données/magasin pour la colonne, ou null
si aucun n’a été spécifié.
Indique si la colonne peut contenir des données Unicode, ou null
si cela n’est pas applicable ou non spécifié.
Quantité maximale de données que la colonne peut contenir, ou null
si cela n’est pas applicable ou n’est pas spécifié.
- rowVersion
- Boolean
Indique si cette colonne est un jeton d’accès concurrentiel automatique, tel qu’un SQL Server timestamp/rowversion.
- nullable
- Boolean
Indique si la colonne peut stocker NULL
des valeurs.
- defaultValue
- Object
Valeur par défaut de la colonne.
- defaultValueSql
- String
Expression SQL à utiliser pour la contrainte par défaut de la colonne.
- computedColumnSql
- String
Expression SQL à utiliser pour calculer la valeur de colonne.
- annotatable
- IAnnotatable
MigrationOperation à utiliser pour rechercher les annotations personnalisées.
- model
- IModel
Modèle cible qui peut être null
si les opérations existent sans modèle.
- builder
- MigrationCommandListBuilder
Générateur de commandes à utiliser pour ajouter le fragment SQL.