Compartilhar via


ColumnAttribute.DbType Propriedade

Definição

Obtém ou define o tipo da coluna de banco de dados.

public:
 property System::String ^ DbType { System::String ^ get(); void set(System::String ^ value); };
public string DbType { get; set; }
member this.DbType : string with get, set
Public Property DbType As String

Valor da propriedade

Valor de cadeia de caracteres que especifica o texto exato que define a coluna em uma declaração de tabela Transact-SQL.

Exemplos

[Column(Storage="_FirstName", DbType="NVarChar(10) NOT NULL", CanBeNull=false)]
public string FirstName
{
    get
    {
        return this._FirstName;
    }
    set
    {
        if ((this._FirstName != value))
        {
            this.OnFirstNameChanging(value);
            this.SendPropertyChanging();
            this._FirstName = value;
            this.SendPropertyChanged("FirstName");
            this.OnFirstNameChanged();
        }
    }
}
<Column(Storage:="_FirstName", DbType:="NVarChar(10) NOT NULL", CanBeNull:=false)>  _
Public Property FirstName() As String
    Get
        Return Me._FirstName
    End Get
    Set
        If ((Me._FirstName = value)  _
                    = false) Then
            Me.OnFirstNameChanging(value)
            Me.SendPropertyChanging
            Me._FirstName = value
            Me.SendPropertyChanged("FirstName")
            Me.OnFirstNameChanged
        End If
    End Set
End Property

Comentários

Use essa propriedade para especificar o texto exato que define a coluna em uma declaração de tabela Transact-SQL. Especifique a DbType propriedade somente se você planeja usar CreateDatabase para criar uma instância do banco de dados.

O valor padrão de DbType é inferido do tipo de membro. Para obter mais informações, consulte Mapeamento de tipo SQL-CLR.

Aplica-se a