Click or drag to resize

IOrderedFindFluentTDocument, TProjection Interface

Fluent interface for find.

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.14.0+2b37a1fe1cbdbe1a020b52b77f1197b6d77575e7
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 IOrderedFindFluentTDocument, TProjection type exposes the following members.

Properties
Methods
  NameDescription
Public methodAsTResult
A simplified type of projection that changes the result type by using a different serializer.
(Inherited from IFindFluentTDocument, TProjection.)
Public methodCount Obsolete.
Counts the number of documents.
(Inherited from IFindFluentTDocument, TProjection.)
Public methodCountAsync Obsolete.
Counts the number of documents.
(Inherited from IFindFluentTDocument, TProjection.)
Public methodCountDocuments
Counts the number of documents.
(Inherited from IFindFluentTDocument, TProjection.)
Public methodCountDocumentsAsync
Counts the number of documents.
(Inherited from IFindFluentTDocument, TProjection.)
Public methodLimit
Limits the number of documents.
(Inherited from IFindFluentTDocument, TProjection.)
Public methodProjectTNewProjection
Projects the the result.
(Inherited from IFindFluentTDocument, TProjection.)
Public methodSkip
Skips the the specified number of documents.
(Inherited from IFindFluentTDocument, TProjection.)
Public methodSort
Sorts the the documents.
(Inherited from IFindFluentTDocument, TProjection.)
Public methodToCursor
Executes the operation and returns a cursor to the results.
(Inherited from IAsyncCursorSourceTDocument.)
Public methodToCursorAsync
Executes the operation and returns a cursor to the results.
(Inherited from IAsyncCursorSourceTDocument.)
Top
Extension Methods
  NameDescription
Public Extension MethodAnyTProjection
Determines whether the cursor returned by a cursor source contains any documents.
(Defined by IAsyncCursorSourceExtensions.)
Public Extension MethodAnyAsyncTProjection
Determines whether the cursor returned by a cursor source contains any documents.
(Defined by IAsyncCursorSourceExtensions.)
Public Extension MethodFirstTProjection
Returns the first document of a cursor returned by a cursor source.
(Defined by IAsyncCursorSourceExtensions.)
Public Extension MethodFirstAsyncTProjection
Returns the first document of a cursor returned by a cursor source.
(Defined by IAsyncCursorSourceExtensions.)
Public Extension MethodFirstOrDefaultTProjection
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 MethodFirstOrDefaultAsyncTProjection
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 MethodForEachAsyncTProjection(ActionTProjection, CancellationToken)Overloaded.
Calls a delegate for each document returned by the cursor.
(Defined by IAsyncCursorSourceExtensions.)
Public Extension MethodForEachAsyncTProjection(ActionTProjection, Int32, CancellationToken)Overloaded.
Calls a delegate for each document returned by the cursor.
(Defined by IAsyncCursorSourceExtensions.)
Public Extension MethodForEachAsyncTProjection(FuncTProjection, Task, CancellationToken)Overloaded.
Calls a delegate for each document returned by the cursor.
(Defined by IAsyncCursorSourceExtensions.)
Public Extension MethodForEachAsyncTProjection(FuncTProjection, Int32, Task, CancellationToken)Overloaded.
Calls a delegate for each document returned by the cursor.
(Defined by IAsyncCursorSourceExtensions.)
Public Extension MethodSingleTProjection
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 MethodSingleAsyncTProjection
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 MethodSingleOrDefaultTProjection
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 MethodSingleOrDefaultAsyncTProjection
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 MethodToEnumerableTProjection
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 MethodToListTProjection
Returns a list containing all the documents returned by the cursor returned by a cursor source.
(Defined by IAsyncCursorSourceExtensions.)
Public Extension MethodToListAsyncTProjection
Returns a list containing all the documents returned by the cursor returned by a cursor source.
(Defined by IAsyncCursorSourceExtensions.)
Top
See Also