Click or drag to resize
IOrderedFindFluent<TDocument, TProjection> Interface
Fluent interface for find.

Namespace: MongoDB.Driver
Assembly: MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.2.0
Syntax
public interface IOrderedFindFluent<TDocument, TProjection> : IFindFluent<TDocument, TProjection>, 
	IAsyncCursorSource<TProjection>

Type Parameters

TDocument
The type of the document.
TProjection
The type of the projection (same as TDocument if there is no projection).

The IOrderedFindFluent< TDocument, TProjection> type exposes the following members.

Methods
  NameDescription
Public methodAs<TResult>
A simplified type of projection that changes the result type by using a different serializer.
(Inherited from IFindFluent<TDocument, TProjection>.)
Public methodCount
Counts the number of documents.
(Inherited from IFindFluent<TDocument, TProjection>.)
Public methodCountAsync
Counts the number of documents.
(Inherited from IFindFluent<TDocument, TProjection>.)
Public methodLimit
Limits the number of documents.
(Inherited from IFindFluent<TDocument, TProjection>.)
Public methodProject<TNewProjection>
Projects the the result.
(Inherited from IFindFluent<TDocument, TProjection>.)
Public methodSkip
Skips the the specified number of documents.
(Inherited from IFindFluent<TDocument, TProjection>.)
Public methodSort
Sorts the the documents.
(Inherited from IFindFluent<TDocument, TProjection>.)
Public methodToCursor
Executes the operation and returns a cursor to the results.
(Inherited from IAsyncCursorSource<TDocument>.)
Public methodToCursorAsync
Executes the operation and returns a cursor to the results.
(Inherited from IAsyncCursorSource<TDocument>.)
Top
Extension Methods
  NameDescription
Public Extension MethodAny<TProjection>
Determines whether the cursor returned by a cursor source contains any documents.
(Defined by IAsyncCursorSourceExtensions.)
Public Extension MethodAnyAsync<TProjection>
Determines whether the cursor returned by a cursor source contains any documents.
(Defined by IAsyncCursorSourceExtensions.)
Public Extension MethodFirst<TProjection>
Returns the first document of a cursor returned by a cursor source.
(Defined by IAsyncCursorSourceExtensions.)
Public Extension MethodFirstAsync<TProjection>
Returns the first document of a cursor returned by a cursor source.
(Defined by IAsyncCursorSourceExtensions.)
Public Extension MethodFirstOrDefault<TProjection>
Returns the first document of a cursor returned by a cursor source, or a default value if the cursor contains no documents.
(Defined by IAsyncCursorSourceExtensions.)
Public Extension MethodFirstOrDefaultAsync<TProjection>
Returns the first document of a cursor returned by a cursor source, or a default value if the cursor contains no documents.
(Defined by IAsyncCursorSourceExtensions.)
Public Extension MethodForEachAsync<TProjection>(Func<TProjection, Task>, CancellationToken)Overloaded.
Calls a delegate for each document returned by the cursor.
(Defined by IAsyncCursorSourceExtensions.)
Public Extension MethodForEachAsync<TProjection>(Func<TProjection, Int32, Task>, CancellationToken)Overloaded.
Calls a delegate for each document returned by the cursor.
(Defined by IAsyncCursorSourceExtensions.)
Public Extension MethodForEachAsync<TProjection>(Action<TProjection>, CancellationToken)Overloaded.
Calls a delegate for each document returned by the cursor.
(Defined by IAsyncCursorSourceExtensions.)
Public Extension MethodForEachAsync<TProjection>(Action<TProjection, Int32>, CancellationToken)Overloaded.
Calls a delegate for each document returned by the cursor.
(Defined by IAsyncCursorSourceExtensions.)
Public Extension MethodSingle<TProjection>
Returns the only document of a cursor returned by a cursor source. This method throws an exception if the cursor does not contain exactly one document.
(Defined by IAsyncCursorSourceExtensions.)
Public Extension MethodSingleAsync<TProjection>
Returns the only document of a cursor returned by a cursor source. This method throws an exception if the cursor does not contain exactly one document.
(Defined by IAsyncCursorSourceExtensions.)
Public Extension MethodSingleOrDefault<TProjection>
Returns the only document of a cursor returned by a cursor source, or a default value if the cursor contains no documents. This method throws an exception if the cursor contains more than one document.
(Defined by IAsyncCursorSourceExtensions.)
Public Extension MethodSingleOrDefaultAsync<TProjection>
Returns the only document of a cursor returned by a cursor source, or a default value if the cursor contains no documents. This method throws an exception if the cursor contains more than one document.
(Defined by IAsyncCursorSourceExtensions.)
Public Extension MethodToEnumerable<TProjection>
Wraps a cursor source in an IEnumerable. Each time GetEnumerator is called a new cursor is fetched from the cursor source.
(Defined by IAsyncCursorSourceExtensions.)
Public Extension MethodToList<TProjection>
Returns a list containing all the documents returned by the cursor returned by a cursor source.
(Defined by IAsyncCursorSourceExtensions.)
Public Extension MethodToListAsync<TProjection>
Returns a list containing all the documents returned by the cursor returned by a cursor source.
(Defined by IAsyncCursorSourceExtensions.)
Top
Properties
See Also