DbExtensions.GetValueOrDefaultAsync 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
GetValueOrDefaultAsync<TValue>(DbDataReader, Int32, TValue) |
Retornará um valor se não DBNullfor , o padrão(TValue) caso contrário. |
GetValueOrDefaultAsync<TValue>(DbDataReader, String, TValue) |
Retornará um valor se não DBNullfor , o padrão(TValue) caso contrário. |
GetValueOrDefaultAsync<TValue>(DbDataReader, Int32, TValue)
Retornará um valor se não DBNullfor , o padrão(TValue) caso contrário.
public static System.Threading.Tasks.Task<TValue> GetValueOrDefaultAsync<TValue> (this System.Data.Common.DbDataReader record, int ordinal, TValue default = default);
static member GetValueOrDefaultAsync : System.Data.Common.DbDataReader * int * 'Value -> System.Threading.Tasks.Task<'Value>
<Extension()>
Public Function GetValueOrDefaultAsync(Of TValue) (record As DbDataReader, ordinal As Integer, Optional default As TValue = Nothing) As Task(Of TValue)
Parâmetros de tipo
- TValue
O tipo do valor a ser solicitado.
Parâmetros
- record
- DbDataReader
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
GetValueOrDefaultAsync<TValue>(DbDataReader, String, TValue)
Retornará um valor se não DBNullfor , o padrão(TValue) caso contrário.
public static System.Threading.Tasks.Task<TValue> GetValueOrDefaultAsync<TValue> (this System.Data.Common.DbDataReader record, string fieldName, TValue default = default);
static member GetValueOrDefaultAsync : System.Data.Common.DbDataReader * string * 'Value -> System.Threading.Tasks.Task<'Value>
<Extension()>
Public Function GetValueOrDefaultAsync(Of TValue) (record As DbDataReader, fieldName As String, Optional default As TValue = Nothing) As Task(Of TValue)
Parâmetros de tipo
- TValue
O tipo do valor a ser solicitado.
Parâmetros
- record
- DbDataReader
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.