DatabaseColumn Constructeurs
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
DatabaseColumn() |
Initialise une nouvelle instance de la classe DatabaseColumn. |
DatabaseColumn(String, String, String, String, String, Nullable<Boolean>, Nullable<Boolean>) |
Initialise une nouvelle instance de la classe DatabaseColumn. |
DatabaseColumn()
Initialise une nouvelle instance de la classe DatabaseColumn.
public DatabaseColumn ();
Public Sub New ()
S’applique à
DatabaseColumn(String, String, String, String, String, Nullable<Boolean>, Nullable<Boolean>)
Initialise une nouvelle instance de la classe DatabaseColumn.
public DatabaseColumn (string id = default, string name = default, string type = default, string columnType = default, string temporalType = default, bool? memoryOptimized = default, bool? isComputed = default);
new Microsoft.Azure.Management.Sql.Models.DatabaseColumn : string * string * string * string * string * Nullable<bool> * Nullable<bool> -> Microsoft.Azure.Management.Sql.Models.DatabaseColumn
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional columnType As String = Nothing, Optional temporalType As String = Nothing, Optional memoryOptimized As Nullable(Of Boolean) = Nothing, Optional isComputed As Nullable(Of Boolean) = Nothing)
Paramètres
- id
- String
ID de la ressource
- name
- String
Nom de la ressource.
- type
- String
Type de ressource.
- columnType
- String
Type de données de colonne. Les valeurs possibles sont les suivantes : 'image', 'text', 'uniqueidentifier', 'date', 'time', 'datetime2', 'datetimeoffset', 'tinyint', 'smallint', 'int', 'smalldatetime', 'real', 'money', 'datetime', 'float', 'sql_variant', 'ntext', 'bit', 'decimal', 'numeric', 'smallmoney', 'bigint', 'hierarchyid', 'geometry', 'geography', 'varbinary', 'varchar', 'binary', 'char', 'timestamp', 'nvarchar', 'nchar', 'xml', 'sysname'
- temporalType
- String
Type temporel de table. Les valeurs possibles sont les suivantes : 'NonTemporalTable', 'HistoryTable', 'SystemVersionedTemporalTable'
Indique si la colonne appartient ou non à une table à mémoire optimisée.
S’applique à
Azure SDK for .NET