DbExpression.Implicit Operador

Definição

Converte um objeto em um DbExpression.

Sobrecargas

Nome Description
Implicit(Nullable<Single> to DbExpression)

Converte um número de ponto flutuante de precisão única anulável em DbExpression.

Implicit(Nullable<Int64> to DbExpression)

Converte um inteiro sem sinal de 64 bits anulável em DbExpression.

Implicit(Nullable<Int32> to DbExpression)

Converte um inteiro sem sinal de 32 bits anulável em DbExpression.

Implicit(Nullable<Int16> to DbExpression)

Converte um inteiro sem sinal de 16 bits anulável em DbExpression.

Implicit(Nullable<Guid> to DbExpression)

Converte um objeto anulável Guid em DbExpression.

Implicit(Nullable<Double> to DbExpression)

Converte um objeto anulável Double em DbExpression.

Implicit(Nullable<Decimal> to DbExpression)

Converte um objeto anulável Decimal em DbExpression.

Implicit(Nullable<DateTimeOffset> to DbExpression)

Converte um objeto anulável DateTimeOffset em DbExpression.

Implicit(Nullable<DateTime> to DbExpression)

Converte um objeto anulável DateTime em DbExpression.

Implicit(Nullable<Byte> to DbExpression)

Converte um inteiro sem sinal de 8 bits anulável em DbExpression.

Implicit(Nullable<Boolean> to DbExpression)

Converte um objeto booliano anulável em DbExpression.

Implicit(DbGeometry to DbExpression)

Converte um objeto DbGeometry em DbExpression.

Implicit(DbGeography to DbExpression)

Converte um objeto DbGeography em DbExpression.

Implicit(Byte[] to DbExpression)

Converte uma matriz de inteiro sem sinal de 8 bits em um DbExpression.

Implicit(String to DbExpression)

Converte uma coleção sequencial de caracteres Unicode em DbExpression.

Implicit(Nullable<Single> to DbExpression)

Converte um número de ponto flutuante de precisão única anulável em DbExpression.

public:
 static operator System::Data::Common::CommandTrees::DbExpression ^(Nullable<float> value);
public static implicit operator System.Data.Common.CommandTrees.DbExpression(float? value);
static member op_Implicit : Nullable<single> -> System.Data.Common.CommandTrees.DbExpression
Public Shared Widening Operator CType (value As Nullable(Of Single)) As DbExpression

Parâmetros

value
Nullable<Single>

O número de ponto flutuante de precisão única.

Retornos

Um DbExpression que representa um número de ponto flutuante de precisão única.

Aplica-se a

Implicit(Nullable<Int64> to DbExpression)

Converte um inteiro sem sinal de 64 bits anulável em DbExpression.

public:
 static operator System::Data::Common::CommandTrees::DbExpression ^(Nullable<long> value);
public static implicit operator System.Data.Common.CommandTrees.DbExpression(long? value);
static member op_Implicit : Nullable<int64> -> System.Data.Common.CommandTrees.DbExpression
Public Shared Widening Operator CType (value As Nullable(Of Long)) As DbExpression

Parâmetros

value
Nullable<Int64>

Um inteiro sem sinal de 64 bits anulável.

Retornos

Um DbExpression que representa o inteiro sem sinal de 64 bits anulável.

Aplica-se a

Implicit(Nullable<Int32> to DbExpression)

Converte um inteiro sem sinal de 32 bits anulável em DbExpression.

public:
 static operator System::Data::Common::CommandTrees::DbExpression ^(Nullable<int> value);
public static implicit operator System.Data.Common.CommandTrees.DbExpression(int? value);
static member op_Implicit : Nullable<int> -> System.Data.Common.CommandTrees.DbExpression
Public Shared Widening Operator CType (value As Nullable(Of Integer)) As DbExpression

Parâmetros

value
Nullable<Int32>

Um inteiro sem sinal de 32 bits anulável.

Retornos

Um DbExpression que representa o inteiro sem sinal de 32 bits anulável.

Aplica-se a

Implicit(Nullable<Int16> to DbExpression)

Converte um inteiro sem sinal de 16 bits anulável em DbExpression.

public:
 static operator System::Data::Common::CommandTrees::DbExpression ^(Nullable<short> value);
public static implicit operator System.Data.Common.CommandTrees.DbExpression(short? value);
static member op_Implicit : Nullable<int16> -> System.Data.Common.CommandTrees.DbExpression
Public Shared Widening Operator CType (value As Nullable(Of Short)) As DbExpression

Parâmetros

value
Nullable<Int16>

Um inteiro sem sinal de 16 bits anulável.

Retornos

Um DbExpression que representa o inteiro sem sinal de 16 bits anulável.

Aplica-se a

Implicit(Nullable<Guid> to DbExpression)

Converte um objeto anulável Guid em DbExpression.

public:
 static operator System::Data::Common::CommandTrees::DbExpression ^(Nullable<Guid> value);
public static implicit operator System.Data.Common.CommandTrees.DbExpression(Guid? value);
static member op_Implicit : Nullable<Guid> -> System.Data.Common.CommandTrees.DbExpression
Public Shared Widening Operator CType (value As Nullable(Of Guid)) As DbExpression

Parâmetros

value
Nullable<Guid>

Um objeto anulável Guid .

Retornos

Um DbExpression que representa o objeto anulável Guid .

Aplica-se a

Implicit(Nullable<Double> to DbExpression)

Converte um objeto anulável Double em DbExpression.

public:
 static operator System::Data::Common::CommandTrees::DbExpression ^(Nullable<double> value);
public static implicit operator System.Data.Common.CommandTrees.DbExpression(double? value);
static member op_Implicit : Nullable<double> -> System.Data.Common.CommandTrees.DbExpression
Public Shared Widening Operator CType (value As Nullable(Of Double)) As DbExpression

Parâmetros

value
Nullable<Double>

O objeto anulável Double .

Retornos

Um DbExpression que representa o objeto anulável Double .

Aplica-se a

Implicit(Nullable<Decimal> to DbExpression)

Converte um objeto anulável Decimal em DbExpression.

public:
 static operator System::Data::Common::CommandTrees::DbExpression ^(Nullable<System::Decimal> value);
public static implicit operator System.Data.Common.CommandTrees.DbExpression(decimal? value);
static member op_Implicit : Nullable<decimal> -> System.Data.Common.CommandTrees.DbExpression
Public Shared Widening Operator CType (value As Nullable(Of Decimal)) As DbExpression

Parâmetros

value
Nullable<Decimal>

O objeto anulável Decimal .

Retornos

Um DbExpression que representa o objeto anulável Decimal .

Aplica-se a

Implicit(Nullable<DateTimeOffset> to DbExpression)

Converte um objeto anulável DateTimeOffset em DbExpression.

public:
 static operator System::Data::Common::CommandTrees::DbExpression ^(Nullable<DateTimeOffset> value);
public static implicit operator System.Data.Common.CommandTrees.DbExpression(DateTimeOffset? value);
static member op_Implicit : Nullable<DateTimeOffset> -> System.Data.Common.CommandTrees.DbExpression
Public Shared Widening Operator CType (value As Nullable(Of DateTimeOffset)) As DbExpression

Parâmetros

value
Nullable<DateTimeOffset>

O objeto anulável DateTime .

Retornos

Um DbExpression que representa o objeto anulável DateTime .

Aplica-se a

Implicit(Nullable<DateTime> to DbExpression)

Converte um objeto anulável DateTime em DbExpression.

public:
 static operator System::Data::Common::CommandTrees::DbExpression ^(Nullable<DateTime> value);
public static implicit operator System.Data.Common.CommandTrees.DbExpression(DateTime? value);
static member op_Implicit : Nullable<DateTime> -> System.Data.Common.CommandTrees.DbExpression
Public Shared Widening Operator CType (value As Nullable(Of DateTime)) As DbExpression

Parâmetros

value
Nullable<DateTime>

O objeto anulável DateTime .

Retornos

Um DbExpression que representa o DateTime objeto.

Aplica-se a

Implicit(Nullable<Byte> to DbExpression)

Converte um inteiro sem sinal de 8 bits anulável em DbExpression.

public:
 static operator System::Data::Common::CommandTrees::DbExpression ^(Nullable<System::Byte> value);
public static implicit operator System.Data.Common.CommandTrees.DbExpression(byte? value);
static member op_Implicit : Nullable<byte> -> System.Data.Common.CommandTrees.DbExpression
Public Shared Widening Operator CType (value As Nullable(Of Byte)) As DbExpression

Parâmetros

value
Nullable<Byte>

Um inteiro sem sinal de 8 bits anulável.

Retornos

Um DbExpression que representa o inteiro sem sinal de 8 bits convertido.

Aplica-se a

Implicit(Nullable<Boolean> to DbExpression)

Converte um objeto booliano anulável em DbExpression.

public:
 static operator System::Data::Common::CommandTrees::DbExpression ^(Nullable<bool> value);
public static implicit operator System.Data.Common.CommandTrees.DbExpression(bool? value);
static member op_Implicit : Nullable<bool> -> System.Data.Common.CommandTrees.DbExpression
Public Shared Widening Operator CType (value As Nullable(Of Boolean)) As DbExpression

Parâmetros

value
Nullable<Boolean>

O objeto booliano anulável.

Retornos

Um DbExpression que representa o objeto booliano anulável convertido.

Aplica-se a

Implicit(DbGeometry to DbExpression)

Converte um objeto DbGeometry em DbExpression.

public:
 static operator System::Data::Common::CommandTrees::DbExpression ^(System::Data::Spatial::DbGeometry ^ value);
public static implicit operator System.Data.Common.CommandTrees.DbExpression(System.Data.Spatial.DbGeometry value);
static member op_Implicit : System.Data.Spatial.DbGeometry -> System.Data.Common.CommandTrees.DbExpression
Public Shared Widening Operator CType (value As DbGeometry) As DbExpression

Parâmetros

value
DbGeometry

O objeto DbGeometry.

Retornos

Um DbExpression que representa o objeto DbGeography convertido.

Aplica-se a

Implicit(DbGeography to DbExpression)

Converte um objeto DbGeography em DbExpression.

public:
 static operator System::Data::Common::CommandTrees::DbExpression ^(System::Data::Spatial::DbGeography ^ value);
public static implicit operator System.Data.Common.CommandTrees.DbExpression(System.Data.Spatial.DbGeography value);
static member op_Implicit : System.Data.Spatial.DbGeography -> System.Data.Common.CommandTrees.DbExpression
Public Shared Widening Operator CType (value As DbGeography) As DbExpression

Parâmetros

value
DbGeography

O objeto DbGeography.

Retornos

Um DbExpression que representa o objeto DbGeography convertido.

Aplica-se a

Implicit(Byte[] to DbExpression)

Converte uma matriz de inteiro sem sinal de 8 bits em um DbExpression.

public:
 static operator System::Data::Common::CommandTrees::DbExpression ^(cli::array <System::Byte> ^ value);
public static implicit operator System.Data.Common.CommandTrees.DbExpression(byte[] value);
static member op_Implicit : byte[] -> System.Data.Common.CommandTrees.DbExpression
Public Shared Widening Operator CType (value As Byte()) As DbExpression

Parâmetros

value
Byte[]

Uma matriz de inteiro sem sinal de 8 bits.

Retornos

Um DbExpression que representa a matriz convertida de inteiro sem sinal de 8 bits.

Aplica-se a

Implicit(String to DbExpression)

Converte uma coleção sequencial de caracteres Unicode em DbExpression.

public:
 static operator System::Data::Common::CommandTrees::DbExpression ^(System::String ^ value);
public static implicit operator System.Data.Common.CommandTrees.DbExpression(string value);
static member op_Implicit : string -> System.Data.Common.CommandTrees.DbExpression
Public Shared Widening Operator CType (value As String) As DbExpression

Parâmetros

value
String

Uma coleção sequencial de caracteres Unicode.

Retornos

Um DbExpression que representa uma coleção sequencial de caracteres Unicode.

Aplica-se a