Share via


CosmosLinqExtensions.IsObject(Object) Method

Definition

Returns a Boolean value indicating if the type of the specified expression is an object. 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 IsObject (this object obj);

Parameters

obj
Object

Returns

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

Examples

var isObjectQuery = documents.Where(document => document.Address.IsObject());

Applies to

Product Versions
Azure SDK for .NET Latest