다음을 통해 공유


SqlFunctions.CharIndex 메서드

정의

다른 식의 내부에 있는 하나의 식의 시작 위치를 반환합니다.

오버로드

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

찾을 문자열 식입니다.

startLocation
Nullable<Int64>

toSearch에서 검색이 시작되는 문자 위치입니다.

반환

targettoSearch에 있으면 이 대상의 시작 위치인 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[]

찾을 문자열 식입니다.

startLocation
Nullable<Int64>

toSearch에서 검색이 시작되는 문자 위치입니다.

반환

targettoSearch에 있는 경우 이 대상의 시작 위치입니다.

특성

설명

이 함수는 직접 호출할 수 없습니다. 이 함수는 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

찾을 문자열 식입니다.

startLocation
Nullable<Int32>

toSearch에서 검색이 시작되는 문자 위치입니다.

반환

targettoSearch에 있는 경우 이 대상의 시작 위치입니다.

특성

설명

이 함수는 직접 호출할 수 없습니다. 이 함수는 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

찾을 문자열 식입니다.

반환

targettoSearch에 있는 경우 이 대상의 시작 위치입니다.

특성

설명

이 함수는 직접 호출할 수 없습니다. 이 함수는 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[]

찾을 문자열 식입니다.

반환

targettoSearch에 있는 경우 이 대상의 시작 위치입니다.

특성

설명

이 함수는 직접 호출할 수 없습니다. 이 함수는 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[]

찾을 문자열 식입니다.

startLocation
Nullable<Int32>

toSearch에서 검색이 시작되는 문자 위치입니다.

반환

targettoSearch에 있는 경우 이 대상의 시작 위치입니다.

특성

설명

이 함수는 직접 호출할 수 없습니다. 이 함수는 LINQ to Entities 쿼리 내에만 나타날 수 있습니다.

이 함수는 데이터베이스의 해당 함수로 변환됩니다. 해당 SQL Server 함수에 대한 자세한 내용은 CHARINDEX(Transact-SQL)를 참조하세요.

적용 대상