DbExpression.Implicit Operator

Definition

Converts an object to a DbExpression.

Overloads

Implicit(Nullable<Single> to DbExpression)

Converts a nullable single-precision floating-point number to DbExpression.

Implicit(Nullable<Int64> to DbExpression)

Converts a nullable 64-bit unsigned integer to DbExpression.

Implicit(Nullable<Int32> to DbExpression)

Converts a nullable 32-bit unsigned integer to DbExpression.

Implicit(Nullable<Int16> to DbExpression)

Converts a nullable 16-bit unsigned integer to DbExpression.

Implicit(Nullable<Guid> to DbExpression)

Converts a nullable Guid object to DbExpression.

Implicit(Nullable<Double> to DbExpression)

Converts a nullable Double object to DbExpression.

Implicit(Nullable<Decimal> to DbExpression)

Converts a nullable Decimal object to DbExpression.

Implicit(Nullable<DateTimeOffset> to DbExpression)

Converts a nullable DateTimeOffset object to DbExpression.

Implicit(Nullable<DateTime> to DbExpression)

Converts a nullable DateTime object to DbExpression.

Implicit(Nullable<Byte> to DbExpression)

Converts a nullable 8-bit unsigned integer to DbExpression.

Implicit(Nullable<Boolean> to DbExpression)

Converts a nullable Boolean object to DbExpression.

Implicit(DbGeometry to DbExpression)

Converts a DbGeometry object to DbExpression.

Implicit(DbGeography to DbExpression)

Converts a DbGeography object to DbExpression.

Implicit(Byte[] to DbExpression)

Converts an array of 8-bit unsigned integer to a DbExpression.

Implicit(String to DbExpression)

Converts a sequential collection of Unicode characters to DbExpression.

Implicit(Nullable<Single> to DbExpression)

Converts a nullable single-precision floating-point number to 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>

The single-precision floating-point number.

Returns

A DbExpression that represents a single-precision floating-point number.

Applies to

Implicit(Nullable<Int64> to DbExpression)

Converts a nullable 64-bit unsigned integer to 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>

A nullable 64-bit unsigned integer.

Returns

A DbExpression that represents the nullable 64-bit unsigned integer.

Applies to

Implicit(Nullable<Int32> to DbExpression)

Converts a nullable 32-bit unsigned integer to 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>

A nullable 32-bit unsigned integer.

Returns

A DbExpression that represents the nullable 32-bit unsigned integer.

Applies to

Implicit(Nullable<Int16> to DbExpression)

Converts a nullable 16-bit unsigned integer to 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>

A nullable 16-bit unsigned integer.

Returns

A DbExpression that represents the nullable 16-bit unsigned integer.

Applies to

Implicit(Nullable<Guid> to DbExpression)

Converts a nullable Guid object to 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>

A nullable Guid object.

Returns

A DbExpression that represents the nullable Guid object.

Applies to

Implicit(Nullable<Double> to DbExpression)

Converts a nullable Double object to 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>

The nullable Double object.

Returns

A DbExpression that represents the nullable Double object.

Applies to

Implicit(Nullable<Decimal> to DbExpression)

Converts a nullable Decimal object to 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>

The nullable Decimal object.

Returns

A DbExpression that represents the nullable Decimal object.

Applies to

Implicit(Nullable<DateTimeOffset> to DbExpression)

Converts a nullable DateTimeOffset object to 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>

The nullable DateTime object.

Returns

A DbExpression that represents the nullable DateTime object.

Applies to

Implicit(Nullable<DateTime> to DbExpression)

Converts a nullable DateTime object to 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>

The nullable DateTime object.

Returns

A DbExpression that represents the DateTime object.

Applies to

Implicit(Nullable<Byte> to DbExpression)

Converts a nullable 8-bit unsigned integer to 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>

A nullable 8-bit unsigned integer.

Returns

A DbExpression that represents the converted 8-bit unsigned integer.

Applies to

Implicit(Nullable<Boolean> to DbExpression)

Converts a nullable Boolean object to 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>

The nullable Boolean object.

Returns

A DbExpression that represents the converted nullable Boolean object.

Applies to

Implicit(DbGeometry to DbExpression)

Converts a DbGeometry object to 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

The DbGeometry object.

Returns

A DbExpression that represents the converted DbGeography object.

Applies to

Implicit(DbGeography to DbExpression)

Converts a DbGeography object to 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

The DbGeography object.

Returns

A DbExpression that represents the converted DbGeography object.

Applies to

Implicit(Byte[] to DbExpression)

Converts an array of 8-bit unsigned integer to a 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[]

An array of 8-bit unsigned integer.

Returns

A DbExpression that represents the converted array of 8-bit unsigned integer.

Applies to

Implicit(String to DbExpression)

Converts a sequential collection of Unicode characters to 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

A sequential collection of Unicode characters.

Returns

A DbExpression that represents a sequential collection of Unicode characters.

Applies to