DbExtensions.GetValueOrDefault Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
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
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
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.