次の方法で共有


EdmFunctions.Contains(DbExpression, DbExpression) メソッド

定義

指定された引数で正規の 'Contains' 関数を呼び出す DbFunctionExpression を作成します。指定する各引数の結果型は文字列である必要があります。 式の結果型は Boolean です。

public static System.Data.Entity.Core.Common.CommandTrees.DbExpression Contains (this System.Data.Entity.Core.Common.CommandTrees.DbExpression searchedString, System.Data.Entity.Core.Common.CommandTrees.DbExpression searchedForString);
static member Contains : System.Data.Entity.Core.Common.CommandTrees.DbExpression * System.Data.Entity.Core.Common.CommandTrees.DbExpression -> System.Data.Entity.Core.Common.CommandTrees.DbExpression
<Extension()>
Public Function Contains (searchedString As DbExpression, searchedForString As DbExpression) As DbExpression

パラメーター

searchedString
DbExpression

searchedForString の出現箇所を検索する文字列を指定する式。

searchedForString
DbExpression

searchedString で検索する文字列を指定する式。

戻り値

searchedForString が searchedString 内で発生するかどうかを示すブール値を返す新しい DbFunctionExpression。

適用対象