EdmFunctions.IndexOf(DbExpression, DbExpression) Method

Definition

Creates a DbFunctionExpression that invokes the canonical 'IndexOf' function with the specified arguments, which must each have a string result type. The result type of the expression is Edm.Int32.

public static System.Data.Entity.Core.Common.CommandTrees.DbFunctionExpression IndexOf (this System.Data.Entity.Core.Common.CommandTrees.DbExpression searchString, System.Data.Entity.Core.Common.CommandTrees.DbExpression stringToFind);
static member IndexOf : System.Data.Entity.Core.Common.CommandTrees.DbExpression * System.Data.Entity.Core.Common.CommandTrees.DbExpression -> System.Data.Entity.Core.Common.CommandTrees.DbFunctionExpression
<Extension()>
Public Function IndexOf (searchString As DbExpression, stringToFind As DbExpression) As DbFunctionExpression

Parameters

searchString
DbExpression

An expression that specifies the string to search for stringToFind.

stringToFind
DbExpression

An expression that specifies the string to locate within searchString should be checked.

Returns

A new DbFunctionExpression that returns the first index of stringToFind in searchString.

Applies to