Compartilhar via


DbExtensions.GetValueOrDefault Método

Definição

Sobrecargas

GetValueOrDefault<TValue>(IDataRecord, Int32, TValue)

Retornará um valor se não DBNullfor , o padrão(TValue) caso contrário.

GetValueOrDefault<TValue>(IDataRecord, String, TValue)

Retornará um valor se não DBNullfor , o padrão(TValue) caso contrário.

GetValueOrDefault<TValue>(IDataRecord, Int32, TValue)

Retornará um valor se não DBNullfor , o padrão(TValue) caso contrário.

public static TValue GetValueOrDefault<TValue> (this System.Data.IDataRecord record, int ordinal, TValue default = default);
static member GetValueOrDefault : System.Data.IDataRecord * int * 'Value -> 'Value
<Extension()>
Public Function GetValueOrDefault(Of TValue) (record As IDataRecord, ordinal As Integer, Optional default As TValue = Nothing) As TValue

Parâmetros de tipo

TValue

O tipo do valor a ser solicitado.

Parâmetros

record
IDataRecord

O registro do qual recuperar o valor.

ordinal
Int32

O ordinal do nome do campo.

default
TValue

O valor padrão se o valor na posição for DBNull.

Retornos

TValue

O valor fornecido ou o padrão para o tipo solicitado.

Exceções

Aplica-se a

GetValueOrDefault<TValue>(IDataRecord, String, TValue)

Retornará um valor se não DBNullfor , o padrão(TValue) caso contrário.

public static TValue GetValueOrDefault<TValue> (this System.Data.IDataRecord record, string fieldName, TValue default = default);
static member GetValueOrDefault : System.Data.IDataRecord * string * 'Value -> 'Value
<Extension()>
Public Function GetValueOrDefault(Of TValue) (record As IDataRecord, fieldName As String, Optional default As TValue = Nothing) As TValue

Parâmetros de tipo

TValue

O tipo do valor a ser solicitado.

Parâmetros

record
IDataRecord

O registro do qual recuperar o valor.

fieldName
String

O nome do campo a ser recuperado.

default
TValue

O valor padrão se o valor na posição for DBNull.

Retornos

TValue

O valor fornecido ou o padrão para o tipo solicitado.

Exceções

Comentários

Essa função será gerada se o fornecido não existir.

Aplica-se a