CosmosLinqExtensions.IsPrimitive(Object) Method

Definition

Determines if a certain property is of primitive JSON type. 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 IsPrimitive (this object obj);
static member IsPrimitive : obj -> bool
<Extension()>
Public Function IsPrimitive (obj As Object) As Boolean

Parameters

obj
Object

Returns

Returns true if this property is null otherwise returns false.

Examples

var isPrimitiveQuery = documents.Where(document => document.Name.IsPrimitive());

Remarks

Primitive JSON types (Double, String, Boolean and Null)

Applies to