DbExpression.Implicit 연산자

정의

개체를 .로 변환합니다 DbExpression.

오버로드

Name Description
Implicit(Nullable<Single> to DbExpression)

nullable 단정밀도 부동 소수점 숫자를 DbExpression.로 변환합니다.

Implicit(Nullable<Int64> to DbExpression)

nullable 64비트 부호 없는 정 DbExpression수로 변환합니다.

Implicit(Nullable<Int32> to DbExpression)

nullable 32비트 부호 없는 정 DbExpression수로 변환합니다.

Implicit(Nullable<Int16> to DbExpression)

nullable 16비트 부호 없는 정 DbExpression수로 변환합니다.

Implicit(Nullable<Guid> to DbExpression)

nullable Guid 개체를 .로 변환합니다 DbExpression.

Implicit(Nullable<Double> to DbExpression)

nullable Double 개체를 .로 변환합니다 DbExpression.

Implicit(Nullable<Decimal> to DbExpression)

nullable Decimal 개체를 .로 변환합니다 DbExpression.

Implicit(Nullable<DateTimeOffset> to DbExpression)

nullable DateTimeOffset 개체를 .로 변환합니다 DbExpression.

Implicit(Nullable<DateTime> to DbExpression)

nullable DateTime 개체를 .로 변환합니다 DbExpression.

Implicit(Nullable<Byte> to DbExpression)

nullable 8비트 부호 없는 정 DbExpression수로 변환합니다.

Implicit(Nullable<Boolean> to DbExpression)

nullable 부울 개체를 .로 변환합니다 DbExpression.

Implicit(DbGeometry to DbExpression)

DbGeometry 개체를 .로 DbExpression변환합니다.

Implicit(DbGeography to DbExpression)

DbGeography 개체를 .로 DbExpression변환합니다.

Implicit(Byte[] to DbExpression)

부호 없는 8비트 정수 배열을 1 DbExpression로 변환합니다.

Implicit(String to DbExpression)

유니코드 문자 DbExpression의 순차 컬렉션을 .로 변환합니다.

Implicit(Nullable<Single> to DbExpression)

nullable 단정밀도 부동 소수점 숫자를 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>

단정밀도 부동 소수점 숫자입니다.

반품

단정밀도 부동 소수점 숫자를 나타내는 A DbExpression 입니다.

적용 대상

Implicit(Nullable<Int64> to DbExpression)

nullable 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>

nullable 64비트 부호 없는 정수입니다.

반품

nullable 64비트 부호 없는 정수를 나타내는 A DbExpression 입니다.

적용 대상

Implicit(Nullable<Int32> to DbExpression)

nullable 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>

nullable 32비트 부호 없는 정수입니다.

반품

nullable 32비트 부호 없는 정수를 나타내는 A DbExpression 입니다.

적용 대상

Implicit(Nullable<Int16> to DbExpression)

nullable 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>

nullable 16비트 부호 없는 정수입니다.

반품

nullable 16비트 부호 없는 정수를 나타내는 A DbExpression 입니다.

적용 대상

Implicit(Nullable<Guid> to DbExpression)

nullable 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>

nullable 개체입니다 Guid .

반품

nullable Guid 개체를 나타내는 A DbExpression 입니다.

적용 대상

Implicit(Nullable<Double> to DbExpression)

nullable 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>

nullable 개체입니다 Double .

반품

nullable Double 개체를 나타내는 A DbExpression 입니다.

적용 대상

Implicit(Nullable<Decimal> to DbExpression)

nullable 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>

nullable 개체입니다 Decimal .

반품

nullable Decimal 개체를 나타내는 A DbExpression 입니다.

적용 대상

Implicit(Nullable<DateTimeOffset> to DbExpression)

nullable 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>

nullable 개체입니다 DateTime .

반품

nullable DateTime 개체를 나타내는 A DbExpression 입니다.

적용 대상

Implicit(Nullable<DateTime> to DbExpression)

nullable 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>

nullable 개체입니다 DateTime .

반품

DbExpression 개체를 나타내는 A입니다DateTime.

적용 대상

Implicit(Nullable<Byte> to DbExpression)

nullable 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>

nullable 8비트 부호 없는 정수입니다.

반품

DbExpression 변환된 8비트 부호 없는 정수입니다.

적용 대상

Implicit(Nullable<Boolean> to DbExpression)

nullable 부울 개체를 .로 변환합니다 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>

nullable 부울 개체입니다.

반품

변환된 nullable 부울 개체를 나타내는 A 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 개체입니다.

반품

DbExpression 변환된 DbGeography 개체를 나타내는 A입니다.

적용 대상

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 개체입니다.

반품

DbExpression 변환된 DbGeography 개체를 나타내는 A입니다.

적용 대상

Implicit(Byte[] to DbExpression)

부호 없는 8비트 정수 배열을 1 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비트 정수의 배열입니다.

반품

부호 없는 8비트 정수의 변환된 배열을 나타내는 A DbExpression 입니다.

적용 대상

Implicit(String to DbExpression)

유니코드 문자 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

유니코드 문자의 순차 컬렉션입니다.

반품

유니코드 문자의 순차 컬렉션을 나타내는 A DbExpression 입니다.

적용 대상