Class FindOperation<T>

    • Method Detail

      • filter

        public FindOperation<T> filter​(BsonDocument filter)
        Sets the query filter to apply to the query.
        Parameters:
        filter - the filter, which may be null.
        Returns:
        this
      • limit

        public FindOperation<T> limit​(int limit)
        Sets the limit to apply.
        Parameters:
        limit - the limit, which may be null
        Returns:
        this
      • projection

        public FindOperation<T> projection​(BsonDocument projection)
        Sets a document describing the fields to return for all matching documents.
        Parameters:
        projection - the project document, which may be null.
        Returns:
        this
      • sort

        public FindOperation<T> sort​(BsonDocument sort)
        Sets the sort criteria to apply to the query.
        Parameters:
        sort - the sort criteria, which may be null.
        Returns:
        this