共用方式為


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 中的字元位置,搜尋會從這個位置開始。

傳回

Nullable<T>Int64 值,如果在 target 中找到 toSearch,則該值為後者的起始位置。

屬性

備註

您無法直接呼叫此函式。 此函式只能出現在 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 中的字元位置,搜尋會從這個位置開始。

傳回

如果在 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

要尋找的字串運算式。

startLocation
Nullable<Int32>

toSearch 中的字元位置,搜尋會從這個位置開始。

傳回

如果在 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[]

要尋找的字串運算式。

startLocation
Nullable<Int32>

toSearch 中的字元位置,搜尋會從這個位置開始。

傳回

如果在 target 中找到 toSearch,則為後者的起始位置。

屬性

備註

您無法直接呼叫此函式。 此函式只能出現在 LINQ to Entities 查詢中。

此函式會轉譯為資料庫中的對應函式。 如需對應 SQL Server 函式的相關信息,請參閱 CHARINDEX (Transact-SQL)

適用於