DbExpression.Implicit Operator

Definitie

Converteert een object naar een DbExpression.

Overloads

Name Description
Implicit(Nullable<Single> to DbExpression)

Converteert een null-drijvendekommagetal naar DbExpression.

Implicit(Nullable<Int64> to DbExpression)

Converteert een nullable 64-bits geheel getal zonder teken naar DbExpression.

Implicit(Nullable<Int32> to DbExpression)

Converteert een nullable 32-bits geheel getal zonder teken naar DbExpression.

Implicit(Nullable<Int16> to DbExpression)

Converteert een nullable 16-bits geheel getal zonder teken naar DbExpression.

Implicit(Nullable<Guid> to DbExpression)

Converteert een null-object Guid naar DbExpression.

Implicit(Nullable<Double> to DbExpression)

Converteert een null-object Double naar DbExpression.

Implicit(Nullable<Decimal> to DbExpression)

Converteert een null-object Decimal naar DbExpression.

Implicit(Nullable<DateTimeOffset> to DbExpression)

Converteert een null-object DateTimeOffset naar DbExpression.

Implicit(Nullable<DateTime> to DbExpression)

Converteert een null-object DateTime naar DbExpression.

Implicit(Nullable<Byte> to DbExpression)

Converteert een nullable 8-bits niet-ondertekend geheel getal naar DbExpression.

Implicit(Nullable<Boolean> to DbExpression)

Converteert een booleaanse waarde die null kan worden uitgevoerd naar DbExpression.

Implicit(DbGeometry to DbExpression)

Converteert een DbGeometry-object naar DbExpression.

Implicit(DbGeography to DbExpression)

Converteert een DbGeography-object naar DbExpression.

Implicit(Byte[] to DbExpression)

Converteert een matrix van een 8-bits geheel getal zonder teken naar een DbExpression.

Implicit(String to DbExpression)

Converteert een sequentiële verzameling Unicode-tekens naar DbExpression.

Implicit(Nullable<Single> to DbExpression)

Converteert een null-drijvendekommagetal naar 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

Parameters

value
Nullable<Single>

Het drijvendekommagetal met één precisie.

Retouren

Een DbExpression die een drijvendekommagetal met één precisie vertegenwoordigt.

Van toepassing op

Implicit(Nullable<Int64> to DbExpression)

Converteert een nullable 64-bits geheel getal zonder teken naar 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

Parameters

value
Nullable<Int64>

Een nullable 64-bits geheel getal zonder teken.

Retouren

Een DbExpression die het nullable 64-bits geheel getal vertegenwoordigt dat niet-ondertekend is.

Van toepassing op

Implicit(Nullable<Int32> to DbExpression)

Converteert een nullable 32-bits geheel getal zonder teken naar 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

Parameters

value
Nullable<Int32>

Een nullable 32-bits geheel getal zonder teken.

Retouren

Een DbExpression die het nullable 32-bits geheel getal vertegenwoordigt dat niet-ondertekend is.

Van toepassing op

Implicit(Nullable<Int16> to DbExpression)

Converteert een nullable 16-bits geheel getal zonder teken naar 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

Parameters

value
Nullable<Int16>

Een nullable 16-bits geheel getal zonder teken.

Retouren

Een DbExpression die het nullable 16-bits niet-ondertekende gehele getal vertegenwoordigt.

Van toepassing op

Implicit(Nullable<Guid> to DbExpression)

Converteert een null-object Guid naar 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

Parameters

value
Nullable<Guid>

Een null-object Guid .

Retouren

Een DbExpression die het null-object Guid vertegenwoordigt.

Van toepassing op

Implicit(Nullable<Double> to DbExpression)

Converteert een null-object Double naar 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

Parameters

value
Nullable<Double>

Het object dat null kan worden Double uitgevoerd.

Retouren

Een DbExpression die het null-object Double vertegenwoordigt.

Van toepassing op

Implicit(Nullable<Decimal> to DbExpression)

Converteert een null-object Decimal naar 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

Parameters

value
Nullable<Decimal>

Het object dat null kan worden Decimal uitgevoerd.

Retouren

Een DbExpression die het null-object Decimal vertegenwoordigt.

Van toepassing op

Implicit(Nullable<DateTimeOffset> to DbExpression)

Converteert een null-object DateTimeOffset naar 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

Parameters

value
Nullable<DateTimeOffset>

Het object dat null kan worden DateTime uitgevoerd.

Retouren

Een DbExpression die het null-object DateTime vertegenwoordigt.

Van toepassing op

Implicit(Nullable<DateTime> to DbExpression)

Converteert een null-object DateTime naar 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

Parameters

value
Nullable<DateTime>

Het object dat null kan worden DateTime uitgevoerd.

Retouren

Een DbExpression die het DateTime object vertegenwoordigt.

Van toepassing op

Implicit(Nullable<Byte> to DbExpression)

Converteert een nullable 8-bits niet-ondertekend geheel getal naar 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

Parameters

value
Nullable<Byte>

Een nullable 8-bits geheel getal zonder teken.

Retouren

Een DbExpression die het geconverteerde 8-bits niet-ondertekende gehele getal vertegenwoordigt.

Van toepassing op

Implicit(Nullable<Boolean> to DbExpression)

Converteert een booleaanse waarde die null kan worden uitgevoerd naar 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

Parameters

value
Nullable<Boolean>

Het booleaanse object dat null kan worden geretourneerd.

Retouren

Een DbExpression die het geconverteerde, nullable Booleaanse object vertegenwoordigt.

Van toepassing op

Implicit(DbGeometry to DbExpression)

Converteert een DbGeometry-object naar 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

Parameters

value
DbGeometry

Het DbGeometry-object.

Retouren

Een DbExpression die het geconverteerde DbGeography-object vertegenwoordigt.

Van toepassing op

Implicit(DbGeography to DbExpression)

Converteert een DbGeography-object naar 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

Parameters

value
DbGeography

Het DbGeography-object.

Retouren

Een DbExpression die het geconverteerde DbGeography-object vertegenwoordigt.

Van toepassing op

Implicit(Byte[] to DbExpression)

Converteert een matrix van een 8-bits geheel getal zonder teken naar een 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

Parameters

value
Byte[]

Een matrix van een 8-bits geheel getal zonder teken.

Retouren

Een DbExpression die de geconverteerde matrix van een 8-bits geheel getal zonder teken vertegenwoordigt.

Van toepassing op

Implicit(String to DbExpression)

Converteert een sequentiële verzameling Unicode-tekens naar 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

Parameters

value
String

Een opeenvolgende verzameling Unicode-tekens.

Retouren

Een DbExpression die een sequentiële verzameling Unicode-tekens vertegenwoordigt.

Van toepassing op