SqlServerDbFunctionsExtensions.DataLength 메서드

정의

오버로드

DataLength(DbFunctions, String)

식을 표시하는 데 사용되는 바이트 수를 반환합니다.

DataLength(DbFunctions, Nullable<TimeSpan>)

식을 표시하는 데 사용되는 바이트 수를 반환합니다.

DataLength(DbFunctions, Nullable<Guid>)

식을 표시하는 데 사용되는 바이트 수를 반환합니다.

DataLength(DbFunctions, Nullable<Double>)

식을 표시하는 데 사용되는 바이트 수를 반환합니다.

DataLength(DbFunctions, Nullable<DateTime>)

식을 표시하는 데 사용되는 바이트 수를 반환합니다.

DataLength(DbFunctions, Nullable<DateTimeOffset>)

식을 표시하는 데 사용되는 바이트 수를 반환합니다.

DataLength(DbFunctions, Nullable<Boolean>)

식을 표시하는 데 사용되는 바이트 수를 반환합니다.

DataLength(DbFunctions, Byte[])

식을 표시하는 데 사용되는 바이트 수를 반환합니다.

DataLength(DbFunctions, Nullable<Decimal>)

식을 표시하는 데 사용되는 바이트 수를 반환합니다.

DataLength(DbFunctions, String)

식을 표시하는 데 사용되는 바이트 수를 반환합니다.

public static int? DataLength (this Microsoft.EntityFrameworkCore.DbFunctions _, string arg);
public static int? DataLength (this Microsoft.EntityFrameworkCore.DbFunctions _, string? arg);
static member DataLength : Microsoft.EntityFrameworkCore.DbFunctions * string -> Nullable<int>
<Extension()>
Public Function DataLength (_ As DbFunctions, arg As String) As Nullable(Of Integer)

매개 변수

_
DbFunctions

DbFunctions 인스턴스입니다.

arg
String

데이터 길이를 검사할 값입니다.

반환

입력 값의 바이트 수입니다.

설명

자세한 내용과 예제는 데이터베이스 함수EF Core를 사용하여 SQL Server 및 Azure SQL 데이터베이스 액세스를 참조하세요.

적용 대상

DataLength(DbFunctions, Nullable<TimeSpan>)

식을 표시하는 데 사용되는 바이트 수를 반환합니다.

public static int? DataLength (this Microsoft.EntityFrameworkCore.DbFunctions _, TimeSpan? arg);
static member DataLength : Microsoft.EntityFrameworkCore.DbFunctions * Nullable<TimeSpan> -> Nullable<int>
<Extension()>
Public Function DataLength (_ As DbFunctions, arg As Nullable(Of TimeSpan)) As Nullable(Of Integer)

매개 변수

_
DbFunctions

DbFunctions 인스턴스입니다.

arg
Nullable<TimeSpan>

데이터 길이를 검사할 값입니다.

반환

입력 값의 바이트 수입니다.

설명

자세한 내용과 예제는 데이터베이스 함수EF Core를 사용하여 SQL Server 및 Azure SQL 데이터베이스 액세스를 참조하세요.

적용 대상

DataLength(DbFunctions, Nullable<Guid>)

식을 표시하는 데 사용되는 바이트 수를 반환합니다.

public static int? DataLength (this Microsoft.EntityFrameworkCore.DbFunctions _, Guid? arg);
static member DataLength : Microsoft.EntityFrameworkCore.DbFunctions * Nullable<Guid> -> Nullable<int>
<Extension()>
Public Function DataLength (_ As DbFunctions, arg As Nullable(Of Guid)) As Nullable(Of Integer)

매개 변수

_
DbFunctions

DbFunctions 인스턴스입니다.

arg
Nullable<Guid>

데이터 길이를 검사할 값입니다.

반환

입력 값의 바이트 수입니다.

설명

자세한 내용과 예제는 데이터베이스 함수EF Core를 사용하여 SQL Server 및 Azure SQL 데이터베이스 액세스를 참조하세요.

적용 대상

DataLength(DbFunctions, Nullable<Double>)

식을 표시하는 데 사용되는 바이트 수를 반환합니다.

public static int? DataLength (this Microsoft.EntityFrameworkCore.DbFunctions _, double? arg);
static member DataLength : Microsoft.EntityFrameworkCore.DbFunctions * Nullable<double> -> Nullable<int>
<Extension()>
Public Function DataLength (_ As DbFunctions, arg As Nullable(Of Double)) As Nullable(Of Integer)

매개 변수

_
DbFunctions

DbFunctions 인스턴스입니다.

arg
Nullable<Double>

데이터 길이를 검사할 값입니다.

반환

입력 값의 바이트 수입니다.

설명

자세한 내용과 예제는 데이터베이스 함수EF Core를 사용하여 SQL Server 및 Azure SQL 데이터베이스 액세스를 참조하세요.

적용 대상

DataLength(DbFunctions, Nullable<DateTime>)

식을 표시하는 데 사용되는 바이트 수를 반환합니다.

public static int? DataLength (this Microsoft.EntityFrameworkCore.DbFunctions _, DateTime? arg);
static member DataLength : Microsoft.EntityFrameworkCore.DbFunctions * Nullable<DateTime> -> Nullable<int>
<Extension()>
Public Function DataLength (_ As DbFunctions, arg As Nullable(Of DateTime)) As Nullable(Of Integer)

매개 변수

_
DbFunctions

DbFunctions 인스턴스입니다.

arg
Nullable<DateTime>

데이터 길이를 검사할 값입니다.

반환

입력 값의 바이트 수입니다.

설명

자세한 내용과 예제는 데이터베이스 함수EF Core를 사용하여 SQL Server 및 Azure SQL 데이터베이스 액세스를 참조하세요.

적용 대상

DataLength(DbFunctions, Nullable<DateTimeOffset>)

식을 표시하는 데 사용되는 바이트 수를 반환합니다.

public static int? DataLength (this Microsoft.EntityFrameworkCore.DbFunctions _, DateTimeOffset? arg);
static member DataLength : Microsoft.EntityFrameworkCore.DbFunctions * Nullable<DateTimeOffset> -> Nullable<int>
<Extension()>
Public Function DataLength (_ As DbFunctions, arg As Nullable(Of DateTimeOffset)) As Nullable(Of Integer)

매개 변수

_
DbFunctions

DbFunctions 인스턴스입니다.

arg
Nullable<DateTimeOffset>

데이터 길이를 검사할 값입니다.

반환

입력 값의 바이트 수입니다.

설명

자세한 내용과 예제는 데이터베이스 함수EF Core를 사용하여 SQL Server 및 Azure SQL 데이터베이스 액세스를 참조하세요.

적용 대상

DataLength(DbFunctions, Nullable<Boolean>)

식을 표시하는 데 사용되는 바이트 수를 반환합니다.

public static int? DataLength (this Microsoft.EntityFrameworkCore.DbFunctions _, bool? arg);
static member DataLength : Microsoft.EntityFrameworkCore.DbFunctions * Nullable<bool> -> Nullable<int>
<Extension()>
Public Function DataLength (_ As DbFunctions, arg As Nullable(Of Boolean)) As Nullable(Of Integer)

매개 변수

_
DbFunctions

DbFunctions 인스턴스입니다.

arg
Nullable<Boolean>

데이터 길이를 검사할 값입니다.

반환

입력 값의 바이트 수입니다.

설명

자세한 내용과 예제는 데이터베이스 함수EF Core를 사용하여 SQL Server 및 Azure SQL 데이터베이스 액세스를 참조하세요.

적용 대상

DataLength(DbFunctions, Byte[])

식을 표시하는 데 사용되는 바이트 수를 반환합니다.

public static int? DataLength (this Microsoft.EntityFrameworkCore.DbFunctions _, byte[] arg);
public static int? DataLength (this Microsoft.EntityFrameworkCore.DbFunctions _, byte[]? arg);
static member DataLength : Microsoft.EntityFrameworkCore.DbFunctions * byte[] -> Nullable<int>
<Extension()>
Public Function DataLength (_ As DbFunctions, arg As Byte()) As Nullable(Of Integer)

매개 변수

_
DbFunctions

DbFunctions 인스턴스입니다.

arg
Byte[]

데이터 길이를 검사할 값입니다.

반환

입력 값의 바이트 수입니다.

설명

자세한 내용과 예제는 데이터베이스 함수EF Core를 사용하여 SQL Server 및 Azure SQL 데이터베이스 액세스를 참조하세요.

적용 대상

DataLength(DbFunctions, Nullable<Decimal>)

식을 표시하는 데 사용되는 바이트 수를 반환합니다.

public static int? DataLength (this Microsoft.EntityFrameworkCore.DbFunctions _, decimal? arg);
static member DataLength : Microsoft.EntityFrameworkCore.DbFunctions * Nullable<decimal> -> Nullable<int>
<Extension()>
Public Function DataLength (_ As DbFunctions, arg As Nullable(Of Decimal)) As Nullable(Of Integer)

매개 변수

_
DbFunctions

DbFunctions 인스턴스입니다.

arg
Nullable<Decimal>

데이터 길이를 검사할 값입니다.

반환

입력 값의 바이트 수입니다.

설명

자세한 내용과 예제는 데이터베이스 함수EF Core를 사용하여 SQL Server 및 Azure SQL 데이터베이스 액세스를 참조하세요.

적용 대상