SqlServerDbFunctionsExtensions.DataLength 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
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 인스턴스입니다.
- 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 인스턴스입니다.
반환
입력 값의 바이트 수입니다.
설명
자세한 내용과 예제는 데이터베이스 함수 및 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 인스턴스입니다.
반환
입력 값의 바이트 수입니다.
설명
자세한 내용과 예제는 데이터베이스 함수 및 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 인스턴스입니다.
반환
입력 값의 바이트 수입니다.
설명
자세한 내용과 예제는 데이터베이스 함수 및 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 인스턴스입니다.
반환
입력 값의 바이트 수입니다.
설명
자세한 내용과 예제는 데이터베이스 함수 및 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 인스턴스입니다.
- 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 인스턴스입니다.
반환
입력 값의 바이트 수입니다.
설명
자세한 내용과 예제는 데이터베이스 함수 및 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 인스턴스입니다.
- 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 인스턴스입니다.
반환
입력 값의 바이트 수입니다.
설명
자세한 내용과 예제는 데이터베이스 함수 및 EF Core를 사용하여 SQL Server 및 Azure SQL 데이터베이스 액세스를 참조하세요.
적용 대상
Entity Framework