Condividi tramite


CosmosLinqExtensions.IsBool(Object) Method

Definition

Returns a Boolean value indicating if the type of the specified expression is a boolean. 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 IsBool(this object obj);
static member IsBool : obj -> bool
<Extension()>
Public Function IsBool (obj As Object) As Boolean

Parameters

obj
Object

Returns

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

Examples

var isBoolQuery = documents.Where(document => document.IsRegistered.IsBool());

Applies to