CosmosLinqExtensions.IsArray(Object) Method

Definition

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

Parameters

obj
Object

Returns

Returns true if the type of the specified expression is an array; otherwise, false.

Examples

var isArrayQuery = documents.Where(document => document.Names.IsArray());

Applies to