SqlFunctions.CharIndex 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
다른 식의 내부에 있는 하나의 식의 시작 위치를 반환합니다.
오버로드
CharIndex(String, String, Nullable<Int64>) |
다른 식의 내부에 있는 하나의 식의 시작 위치를 반환합니다. |
CharIndex(Byte[], Byte[], Nullable<Int64>) |
다른 식의 내부에 있는 하나의 식의 시작 위치를 반환합니다. |
CharIndex(String, String, Nullable<Int32>) |
다른 식의 내부에 있는 하나의 식의 시작 위치를 반환합니다. |
CharIndex(String, String) |
다른 식의 내부에 있는 하나의 식의 시작 위치를 반환합니다. |
CharIndex(Byte[], Byte[]) |
다른 식의 내부에 있는 하나의 식의 시작 위치를 반환합니다. |
CharIndex(Byte[], Byte[], Nullable<Int32>) |
다른 식의 내부에 있는 하나의 식의 시작 위치를 반환합니다. |
설명
이 함수는 직접 호출할 수 없습니다. 이 함수는 LINQ to Entities 쿼리 내에만 나타날 수 있습니다.
이 함수는 데이터베이스의 해당 함수로 변환됩니다. 해당 SQL Server 함수에 대한 자세한 내용은 CHARINDEX(Transact-SQL)를 참조하세요.
CharIndex(String, String, Nullable<Int64>)
다른 식의 내부에 있는 하나의 식의 시작 위치를 반환합니다.
public:
static Nullable<long> CharIndex(System::String ^ toSearch, System::String ^ target, Nullable<long> startLocation);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHARINDEX")]
public static long? CharIndex (string toSearch, string target, long? startLocation);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHARINDEX")>]
static member CharIndex : string * string * Nullable<int64> -> Nullable<int64>
Public Shared Function CharIndex (toSearch As String, target As String, startLocation As Nullable(Of Long)) As Nullable(Of Long)
매개 변수
- toSearch
- String
검색할 문자열 식입니다.
- target
- String
찾을 문자열 식입니다.
반환
target
이 toSearch
에 있으면 이 대상의 시작 위치인 Nullable<T> 값의 Int64입니다.
- 특성
설명
이 함수는 직접 호출할 수 없습니다. 이 함수는 LINQ to Entities 쿼리 내에만 나타날 수 있습니다.
이 함수는 데이터베이스의 해당 함수로 변환됩니다. 해당 SQL Server 함수에 대한 자세한 내용은 CHARINDEX(Transact-SQL)를 참조하세요.
적용 대상
CharIndex(Byte[], Byte[], Nullable<Int64>)
다른 식의 내부에 있는 하나의 식의 시작 위치를 반환합니다.
public:
static Nullable<long> CharIndex(cli::array <System::Byte> ^ toSearch, cli::array <System::Byte> ^ target, Nullable<long> startLocation);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHARINDEX")]
public static long? CharIndex (byte[] toSearch, byte[] target, long? startLocation);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHARINDEX")>]
static member CharIndex : byte[] * byte[] * Nullable<int64> -> Nullable<int64>
Public Shared Function CharIndex (toSearch As Byte(), target As Byte(), startLocation As Nullable(Of Long)) As Nullable(Of Long)
매개 변수
- toSearch
- Byte[]
검색할 문자열 식입니다.
- target
- Byte[]
찾을 문자열 식입니다.
반환
target
이 toSearch
에 있는 경우 이 대상의 시작 위치입니다.
- 특성
설명
이 함수는 직접 호출할 수 없습니다. 이 함수는 LINQ to Entities 쿼리 내에만 나타날 수 있습니다.
이 함수는 데이터베이스의 해당 함수로 변환됩니다. 해당 SQL Server 함수에 대한 자세한 내용은 CHARINDEX(Transact-SQL)를 참조하세요.
적용 대상
CharIndex(String, String, Nullable<Int32>)
다른 식의 내부에 있는 하나의 식의 시작 위치를 반환합니다.
public:
static Nullable<int> CharIndex(System::String ^ toSearch, System::String ^ target, Nullable<int> startLocation);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHARINDEX")]
public static int? CharIndex (string toSearch, string target, int? startLocation);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHARINDEX")>]
static member CharIndex : string * string * Nullable<int> -> Nullable<int>
Public Shared Function CharIndex (toSearch As String, target As String, startLocation As Nullable(Of Integer)) As Nullable(Of Integer)
매개 변수
- toSearch
- String
검색할 문자열 식입니다.
- target
- String
찾을 문자열 식입니다.
반환
target
이 toSearch
에 있는 경우 이 대상의 시작 위치입니다.
- 특성
설명
이 함수는 직접 호출할 수 없습니다. 이 함수는 LINQ to Entities 쿼리 내에만 나타날 수 있습니다.
이 함수는 데이터베이스의 해당 함수로 변환됩니다. 해당 SQL Server 함수에 대한 자세한 내용은 CHARINDEX(Transact-SQL)를 참조하세요.
적용 대상
CharIndex(String, String)
다른 식의 내부에 있는 하나의 식의 시작 위치를 반환합니다.
public:
static Nullable<int> CharIndex(System::String ^ toSearch, System::String ^ target);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHARINDEX")]
public static int? CharIndex (string toSearch, string target);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHARINDEX")>]
static member CharIndex : string * string -> Nullable<int>
Public Shared Function CharIndex (toSearch As String, target As String) As Nullable(Of Integer)
매개 변수
- toSearch
- String
검색할 문자열 식입니다.
- target
- String
찾을 문자열 식입니다.
반환
target
이 toSearch
에 있는 경우 이 대상의 시작 위치입니다.
- 특성
설명
이 함수는 직접 호출할 수 없습니다. 이 함수는 LINQ to Entities 쿼리 내에만 나타날 수 있습니다.
이 함수는 데이터베이스의 해당 함수로 변환됩니다. 해당 SQL Server 함수에 대한 자세한 내용은 CHARINDEX(Transact-SQL)를 참조하세요.
적용 대상
CharIndex(Byte[], Byte[])
다른 식의 내부에 있는 하나의 식의 시작 위치를 반환합니다.
public:
static Nullable<int> CharIndex(cli::array <System::Byte> ^ toSearch, cli::array <System::Byte> ^ target);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHARINDEX")]
public static int? CharIndex (byte[] toSearch, byte[] target);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHARINDEX")>]
static member CharIndex : byte[] * byte[] -> Nullable<int>
Public Shared Function CharIndex (toSearch As Byte(), target As Byte()) As Nullable(Of Integer)
매개 변수
- toSearch
- Byte[]
검색할 문자열 식입니다.
- target
- Byte[]
찾을 문자열 식입니다.
반환
target
이 toSearch
에 있는 경우 이 대상의 시작 위치입니다.
- 특성
설명
이 함수는 직접 호출할 수 없습니다. 이 함수는 LINQ to Entities 쿼리 내에만 나타날 수 있습니다.
이 함수는 데이터베이스의 해당 함수로 변환됩니다. 해당 SQL Server 함수에 대한 자세한 내용은 CHARINDEX(Transact-SQL)를 참조하세요.
적용 대상
CharIndex(Byte[], Byte[], Nullable<Int32>)
다른 식의 내부에 있는 하나의 식의 시작 위치를 반환합니다.
public:
static Nullable<int> CharIndex(cli::array <System::Byte> ^ toSearch, cli::array <System::Byte> ^ target, Nullable<int> startLocation);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHARINDEX")]
public static int? CharIndex (byte[] toSearch, byte[] target, int? startLocation);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHARINDEX")>]
static member CharIndex : byte[] * byte[] * Nullable<int> -> Nullable<int>
Public Shared Function CharIndex (toSearch As Byte(), target As Byte(), startLocation As Nullable(Of Integer)) As Nullable(Of Integer)
매개 변수
- toSearch
- Byte[]
검색할 문자열 식입니다.
- target
- Byte[]
찾을 문자열 식입니다.
반환
target
이 toSearch
에 있는 경우 이 대상의 시작 위치입니다.
- 특성
설명
이 함수는 직접 호출할 수 없습니다. 이 함수는 LINQ to Entities 쿼리 내에만 나타날 수 있습니다.
이 함수는 데이터베이스의 해당 함수로 변환됩니다. 해당 SQL Server 함수에 대한 자세한 내용은 CHARINDEX(Transact-SQL)를 참조하세요.
적용 대상
.NET