MongoDbCursorMethodsProperties Class

Definition

Cursor methods for Mongodb query

public class MongoDbCursorMethodsProperties
type MongoDbCursorMethodsProperties = class
Public Class MongoDbCursorMethodsProperties
Inheritance
MongoDbCursorMethodsProperties

Constructors

MongoDbCursorMethodsProperties()

Initializes a new instance of the MongoDbCursorMethodsProperties class.

MongoDbCursorMethodsProperties(IDictionary<String,Object>, Object, Object, Object, Object)

Initializes a new instance of the MongoDbCursorMethodsProperties class.

Properties

AdditionalProperties

Gets or sets unmatched properties from the message are deserialized this collection

Limit

Gets or sets specifies the maximum number of documents the server returns. limit() is analogous to the LIMIT statement in a SQL database. Type: integer (or Expression with resultType integer).

Project

Gets or sets specifies the fields to return in the documents that match the query filter. To return all fields in the matching documents, omit this parameter. Type: string (or Expression with resultType string).

Skip

Gets or sets specifies the how many documents skipped and where MongoDB begins returning results. This approach may be useful in implementing paginated results. Type: integer (or Expression with resultType integer).

Sort

Gets or sets specifies the order in which the query returns matching documents. Type: string (or Expression with resultType string). Type: string (or Expression with resultType string).

Applies to