Condividi tramite


CosmosLinqExtensions.IsString(Object) Method

Definition

Returns a Boolean value indicating if the type of the specified expression is a string. This method is to be used in LINQ expressions only and will be evaluated on server. There's no implementation provided in the client library.

public static bool IsString(this object obj);
static member IsString : obj -> bool
<Extension()>
Public Function IsString (obj As Object) As Boolean

Parameters

obj
Object

Returns

Returns true if the type of the specified expression is a string; otherwise, false.

Examples

var isStringQuery = documents.Where(document => document.Name.IsString());

Applies to