Bagikan melalui


DbExpression.Implicit Operator

Definisi

Mengonversi objek menjadi DbExpression.

Overload

Implicit(Nullable<Single> to DbExpression)

Mengonversi angka floating-point presisi tunggal yang dapat diubah ke DbExpression.

Implicit(Nullable<Int64> to DbExpression)

Mengonversi bilangan bulat tidak bertanda 64-bit yang dapat diubah ke DbExpression.

Implicit(Nullable<Int32> to DbExpression)

Mengonversi bilangan bulat tidak bertanda 32-bit yang dapat diubah ke DbExpression.

Implicit(Nullable<Int16> to DbExpression)

Mengonversi bilangan bulat tidak bertanda 16-bit yang dapat diubah ke DbExpression.

Implicit(Nullable<Guid> to DbExpression)

Mengonversi objek nullable Guid ke DbExpression.

Implicit(Nullable<Double> to DbExpression)

Mengonversi objek nullable Double ke DbExpression.

Implicit(Nullable<Decimal> to DbExpression)

Mengonversi objek nullable Decimal ke DbExpression.

Implicit(Nullable<DateTimeOffset> to DbExpression)

Mengonversi objek nullable DateTimeOffset ke DbExpression.

Implicit(Nullable<DateTime> to DbExpression)

Mengonversi objek nullable DateTime ke DbExpression.

Implicit(Nullable<Byte> to DbExpression)

Mengonversi bilangan bulat tidak bertanda 8-bit yang dapat diubah ke DbExpression.

Implicit(Nullable<Boolean> to DbExpression)

Mengonversi objek Boolean nullable menjadi DbExpression.

Implicit(DbGeometry to DbExpression)

Mengonversi objek DbGeometry menjadi DbExpression.

Implicit(DbGeography to DbExpression)

Mengonversi objek DbGeography menjadi DbExpression.

Implicit(Byte[] to DbExpression)

Mengonversi array bilangan bulat 8-bit yang tidak ditandatangani menjadi DbExpression.

Implicit(String to DbExpression)

Mengonversi koleksi berurutan karakter Unicode menjadi DbExpression.

Implicit(Nullable<Single> to DbExpression)

Mengonversi angka floating-point presisi tunggal yang dapat diubah ke 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

Parameter

value
Nullable<Single>

Angka floating-point presisi tunggal.

Mengembalikan

DbExpression yang menunjukkan angka floating-point presisi tunggal.

Berlaku untuk

Implicit(Nullable<Int64> to DbExpression)

Mengonversi bilangan bulat tidak bertanda 64-bit yang dapat diubah ke 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

Parameter

value
Nullable<Int64>

Bilangan bulat tidak bertanda 64-bit yang dapat diubah ke null.

Mengembalikan

DbExpression yang mewakili bilangan bulat tidak bertanda 64-bit yang dapat diubah ke null.

Berlaku untuk

Implicit(Nullable<Int32> to DbExpression)

Mengonversi bilangan bulat tidak bertanda 32-bit yang dapat diubah ke 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

Parameter

value
Nullable<Int32>

Bilangan bulat tidak bertanda 32-bit yang dapat diubah ke null.

Mengembalikan

DbExpression yang mewakili bilangan bulat tidak bertanda 32-bit yang dapat diubah ke null.

Berlaku untuk

Implicit(Nullable<Int16> to DbExpression)

Mengonversi bilangan bulat tidak bertanda 16-bit yang dapat diubah ke 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

Parameter

value
Nullable<Int16>

Bilangan bulat tidak bertanda 16-bit yang dapat diubah ke null.

Mengembalikan

DbExpression yang mewakili bilangan bulat tidak bertanda 16-bit yang dapat diubah ke null.

Berlaku untuk

Implicit(Nullable<Guid> to DbExpression)

Mengonversi objek nullable Guid ke 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

Parameter

value
Nullable<Guid>

Objek yang dapat diubah ke Guid null.

Mengembalikan

DbExpression yang mewakili objek nullableGuid.

Berlaku untuk

Implicit(Nullable<Double> to DbExpression)

Mengonversi objek nullable Double ke 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

Parameter

value
Nullable<Double>

Objek yang dapat diubah ke Double null.

Mengembalikan

DbExpression yang mewakili objek nullableDouble.

Berlaku untuk

Implicit(Nullable<Decimal> to DbExpression)

Mengonversi objek nullable Decimal ke 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

Parameter

value
Nullable<Decimal>

Objek yang dapat diubah ke Decimal null.

Mengembalikan

DbExpression yang mewakili objek nullableDecimal.

Berlaku untuk

Implicit(Nullable<DateTimeOffset> to DbExpression)

Mengonversi objek nullable DateTimeOffset ke 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

Parameter

value
Nullable<DateTimeOffset>

Objek yang dapat diubah ke DateTime null.

Mengembalikan

DbExpression yang mewakili objek nullableDateTime.

Berlaku untuk

Implicit(Nullable<DateTime> to DbExpression)

Mengonversi objek nullable DateTime ke 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

Parameter

value
Nullable<DateTime>

Objek yang dapat diubah ke DateTime null.

Mengembalikan

DbExpression yang mewakili DateTime objek .

Berlaku untuk

Implicit(Nullable<Byte> to DbExpression)

Mengonversi bilangan bulat tidak bertanda 8-bit yang dapat diubah ke 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

Parameter

value
Nullable<Byte>

Bilangan bulat yang tidak ditandatangani 8-bit yang dapat diubah ke null.

Mengembalikan

DbExpression yang mewakili bilangan bulat yang tidak ditandatangani 8-bit yang dikonversi.

Berlaku untuk

Implicit(Nullable<Boolean> to DbExpression)

Mengonversi objek Boolean nullable menjadi 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

Parameter

value
Nullable<Boolean>

Objek Boolean nullable.

Mengembalikan

DbExpression yang mewakili objek Boolean nullable yang dikonversi.

Berlaku untuk

Implicit(DbGeometry to DbExpression)

Mengonversi objek DbGeometry menjadi 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

Parameter

value
DbGeometry

Objek DbGeometry.

Mengembalikan

DbExpression yang mewakili objek DbGeography yang dikonversi.

Berlaku untuk

Implicit(DbGeography to DbExpression)

Mengonversi objek DbGeography menjadi 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

Parameter

value
DbGeography

Objek DbGeography.

Mengembalikan

DbExpression yang mewakili objek DbGeography yang dikonversi.

Berlaku untuk

Implicit(Byte[] to DbExpression)

Mengonversi array bilangan bulat 8-bit yang tidak ditandatangani menjadi 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

Parameter

value
Byte[]

Array bilangan bulat 8-bit yang tidak ditandatangani.

Mengembalikan

DbExpression yang mewakili array yang dikonversi dari bilangan bulat 8-bit yang tidak ditandatangani.

Berlaku untuk

Implicit(String to DbExpression)

Mengonversi koleksi berurutan karakter Unicode menjadi 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

Parameter

value
String

Kumpulan berurutan karakter Unicode.

Mengembalikan

DbExpression yang mewakili kumpulan berurutan karakter Unicode.

Berlaku untuk