다음을 통해 공유


SqliteDbFunctionsExtensions.Substr 메서드

정의

오버로드

Substr(DbFunctions, Byte[], Int32)

지정된 값의 하위 배열을 반환하는 SQLite substr 함수에 매핑됩니다. 하위 배열은 에서 startIndex 시작하여 값의 끝까지 계속됩니다.

Substr(DbFunctions, Byte[], Int32, Int32)

지정된 값의 하위 배열을 반환하는 SQLite 하위 문자열 함수에 매핑됩니다. 하위 배열은 에서 startIndex 시작되고 지정된 length가 있습니다.

Substr(DbFunctions, Byte[], Int32)

지정된 값의 하위 배열을 반환하는 SQLite substr 함수에 매핑됩니다. 하위 배열은 에서 startIndex 시작하여 값의 끝까지 계속됩니다.

public static byte[] Substr (this Microsoft.EntityFrameworkCore.DbFunctions _, byte[] bytes, int startIndex);
static member Substr : Microsoft.EntityFrameworkCore.DbFunctions * byte[] * int -> byte[]
<Extension()>
Public Function Substr (_ As DbFunctions, bytes As Byte(), startIndex As Integer) As Byte()

매개 변수

_
DbFunctions

DbFunctions 인스턴스입니다.

bytes
Byte[]

이진 값입니다.

startIndex
Int32

1부터 시작하는 인덱스입니다. 음수이면 인덱스는 값의 끝을 기준으로 합니다.

반환

Byte[]

하위 배열입니다.

설명

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

적용 대상

Substr(DbFunctions, Byte[], Int32, Int32)

지정된 값의 하위 배열을 반환하는 SQLite 하위 문자열 함수에 매핑됩니다. 하위 배열은 에서 startIndex 시작되고 지정된 length가 있습니다.

public static byte[] Substr (this Microsoft.EntityFrameworkCore.DbFunctions _, byte[] bytes, int startIndex, int length);
static member Substr : Microsoft.EntityFrameworkCore.DbFunctions * byte[] * int * int -> byte[]
<Extension()>
Public Function Substr (_ As DbFunctions, bytes As Byte(), startIndex As Integer, length As Integer) As Byte()

매개 변수

_
DbFunctions

DbFunctions 인스턴스입니다.

bytes
Byte[]

이진 값입니다.

startIndex
Int32

1부터 시작하는 인덱스입니다. 음수이면 인덱스는 값의 끝을 기준으로 합니다.

length
Int32

하위 배열의 길이입니다. 음수이면 앞 startIndex 의 바이트가 반환됩니다.

반환

Byte[]

하위 배열입니다.

설명

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

적용 대상