Share via


CosmosDbFunctionsExtensions.FullTextContains Method

Definition

Checks if the specified property contains the given keyword using full-text search.

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

Parameters

_
DbFunctions

The DbFunctions instance.

property
String

The property to search.

keyword
String

The keyword to search for.

Returns

true if the property contains the keyword; otherwise, false.

Applies to