CosmosLinqExtensions.IsNumber(Object) Method

Definition

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

Parameters

obj
Object

Returns

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

Examples

var isNumberQuery = documents.Where(document => document.Age.IsNumber());

Applies to