次の方法で共有


SqliteDbFunctionsExtensions.Glob(DbFunctions, String, String) メソッド

定義

に似ていますLike(DbFunctions, String, String)が、代わりにファイル システムの globbing 構文を使用する SQLite glob 関数にマップされます。

public static bool Glob (this Microsoft.EntityFrameworkCore.DbFunctions _, string matchExpression, string pattern);
static member Glob : Microsoft.EntityFrameworkCore.DbFunctions * string * string -> bool
<Extension()>
Public Function Glob (_ As DbFunctions, matchExpression As String, pattern As String) As Boolean

パラメーター

_
DbFunctions

DbFunctions のインスタンスです。

matchExpression
String

照合する文字列。

pattern
String

ワイルドカード *,?,[,^,-,]を含む可能性があるパターン。

戻り値

true 一致がある場合は 。

注釈

詳細と例については、「 データベース関数」および 「EF Core を使用した SQLite データベースへのアクセス 」を参照してください。

適用対象