Compartilhar via


DatabaseColumn Construtores

Definição

Sobrecargas

DatabaseColumn()

Inicializa uma nova instância da classe DatabaseColumn.

DatabaseColumn(String, String, String, String, String, Nullable<Boolean>, Nullable<Boolean>)

Inicializa uma nova instância da classe DatabaseColumn.

DatabaseColumn()

Inicializa uma nova instância da classe DatabaseColumn.

public DatabaseColumn ();
Public Sub New ()

Aplica-se a

DatabaseColumn(String, String, String, String, String, Nullable<Boolean>, Nullable<Boolean>)

Inicializa uma nova instância da 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)

Parâmetros

id
String

ID do recurso.

name
String

Nome do recurso.

type
String

Tipo de recurso.

columnType
String

O tipo de dados da coluna. Os valores possíveis incluem: '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

O tipo temporal da tabela. Os valores possíveis incluem: 'NonTemporalTable', 'HistoryTable', 'SystemVersionedTemporalTable'

memoryOptimized
Nullable<Boolean>

Se a coluna pertence ou não a uma tabela com otimização de memória.

isComputed
Nullable<Boolean>

Se a coluna é computada ou não.

Aplica-se a