共用方式為


DbExpression.Implicit 運算子

定義

將物件轉換成 DbExpression

多載

Implicit(Nullable<Single> to DbExpression)

將可為 null 的 單精確度浮點數轉換成 DbExpression

Implicit(Nullable<Int64> to DbExpression)

將可為 Null 的 64 位元不帶正負號整數轉換為 DbExpression

Implicit(Nullable<Int32> to DbExpression)

將可為 Null 的 32 位元不帶正負號整數轉換為 DbExpression

Implicit(Nullable<Int16> to DbExpression)

將可為 Null 的 16 位元不帶正負號整數轉換為 DbExpression

Implicit(Nullable<Guid> to DbExpression)

將可為 null 的 Guid 物件轉換成 DbExpression

Implicit(Nullable<Double> to DbExpression)

將可為 null 的 Double 物件轉換成 DbExpression

Implicit(Nullable<Decimal> to DbExpression)

將可為 null 的 Decimal 物件轉換成 DbExpression

Implicit(Nullable<DateTimeOffset> to DbExpression)

將可為 null 的 DateTimeOffset 物件轉換成 DbExpression

Implicit(Nullable<DateTime> to DbExpression)

將可為 null 的 DateTime 物件轉換成 DbExpression

Implicit(Nullable<Byte> to DbExpression)

將可為 null 的 8 位元不帶正負號整數轉換為 DbExpression

Implicit(Nullable<Boolean> to DbExpression)

將可為 Null 的布林值物件轉換為 DbExpression

Implicit(DbGeometry to DbExpression)

將 DbGeometry 物件轉換成 DbExpression

Implicit(DbGeography to DbExpression)

將 DbGeography 物件轉換成 DbExpression

Implicit(Byte[] to DbExpression)

將 8 位無符號整數的陣列轉換為 DbExpression

Implicit(String to DbExpression)

將 Unicode 字元的循序集合轉換為 DbExpression

Implicit(Nullable<Single> to DbExpression)

將可為 null 的 單精確度浮點數轉換成 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

參數

value
Nullable<Single>

單精確度浮點數。

傳回

DbExpression,表示單精確度浮點數。

適用於

Implicit(Nullable<Int64> to DbExpression)

將可為 Null 的 64 位元不帶正負號整數轉換為 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

參數

value
Nullable<Int64>

可為 Null 的 64 位元不帶正負號整數。

傳回

DbExpression,表示可為 Null 的 64 位元不帶正負號整數。

適用於

Implicit(Nullable<Int32> to DbExpression)

將可為 Null 的 32 位元不帶正負號整數轉換為 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

參數

value
Nullable<Int32>

可為 Null 的 32 位元不帶正負號整數。

傳回

DbExpression,表示可為 Null 的 32 位元不帶正負號整數。

適用於

Implicit(Nullable<Int16> to DbExpression)

將可為 Null 的 16 位元不帶正負號整數轉換為 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

參數

value
Nullable<Int16>

可為 Null 的 16 位元不帶正負號整數。

傳回

DbExpression,表示可為 null 的 16 位元不帶正負號整數。

適用於

Implicit(Nullable<Guid> to DbExpression)

將可為 null 的 Guid 物件轉換成 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

參數

value
Nullable<Guid>

可為 Null 的 Guid 物件。

傳回

DbExpression,表示可為 null 的 Guid 物件。

適用於

Implicit(Nullable<Double> to DbExpression)

將可為 null 的 Double 物件轉換成 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

參數

value
Nullable<Double>

可為 Null 的 Double 物件。

傳回

DbExpression,表示可為 null 的 Double 物件。

適用於

Implicit(Nullable<Decimal> to DbExpression)

將可為 null 的 Decimal 物件轉換成 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

參數

value
Nullable<Decimal>

可為 Null 的 Decimal 物件。

傳回

DbExpression,表示可為 null 的 Decimal 物件。

適用於

Implicit(Nullable<DateTimeOffset> to DbExpression)

將可為 null 的 DateTimeOffset 物件轉換成 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

參數

value
Nullable<DateTimeOffset>

可為 Null 的 DateTime 物件。

傳回

DbExpression,表示可為 null 的 DateTime 物件。

適用於

Implicit(Nullable<DateTime> to DbExpression)

將可為 null 的 DateTime 物件轉換成 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

參數

value
Nullable<DateTime>

可為 Null 的 DateTime 物件。

傳回

表示 DbExpression 物件的 DateTime

適用於

Implicit(Nullable<Byte> to DbExpression)

將可為 null 的 8 位元不帶正負號整數轉換為 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

參數

value
Nullable<Byte>

可為 Null 的 8 位元不帶正負號整數。

傳回

DbExpression,表示已轉換的 8 位元不帶正負號的整數。

適用於

Implicit(Nullable<Boolean> to DbExpression)

將可為 Null 的布林值物件轉換為 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

參數

value
Nullable<Boolean>

可為 Null 的布林值物件。

傳回

表示已轉換之可為 Null 布林物件的 DbExpression

適用於

Implicit(DbGeometry to DbExpression)

將 DbGeometry 物件轉換成 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

參數

value
DbGeometry

DbGeometry 物件。

傳回

表示已轉換之 DbGeography 物件的 DbExpression

適用於

Implicit(DbGeography to DbExpression)

將 DbGeography 物件轉換成 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

參數

value
DbGeography

DbGeography 物件。

傳回

表示已轉換之 DbGeography 物件的 DbExpression

適用於

Implicit(Byte[] to DbExpression)

將 8 位無符號整數的陣列轉換為 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

參數

value
Byte[]

8 位元不帶正負號的整數的陣列。

傳回

DbExpression,表示已轉換的 8 位元不帶正負號整數陣列。

適用於

Implicit(String to DbExpression)

將 Unicode 字元的循序集合轉換為 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

參數

value
String

Unicode 字元的循序集合。

傳回

表示 Unicode 字元循序集合的 DbExpression

適用於