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 位无符号整数。

返回

表示转换后的 8 位无符号整数的 DbExpression

适用于

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 的 Boolean 对象。

返回

表示转换后的 nullable Boolean 对象的 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 字符的有序集合。

返回

DbExpression 表示 Unicode 字符的有序集合。

适用于