Class FindOptionsBase
Options for a find operation.
public abstract class FindOptionsBase
- Inheritance
-
FindOptionsBase
- Derived
- Inherited Members
Constructors
FindOptionsBase()
Initializes a new instance of the FindOptionsBase class.
public FindOptionsBase()
Properties
AllowDiskUse
Gets or sets a value indicating whether the server is allowed to write to disk while executing the Find operation.
public bool? AllowDiskUse { get; set; }
Property Value
- bool?
AllowPartialResults
Gets or sets a value indicating whether to allow partial results when some shards are unavailable.
public bool? AllowPartialResults { get; set; }
Property Value
- bool?
BatchSize
Gets or sets the size of a batch.
public int? BatchSize { get; set; }
Property Value
- int?
Collation
Gets or sets the collation.
public Collation Collation { get; set; }
Property Value
Comment
Gets or sets the comment.
public BsonValue Comment { get; set; }
Property Value
CursorType
Gets or sets the type of the cursor.
public CursorType CursorType { get; set; }
Property Value
Hint
Gets or sets the hint.
public BsonValue Hint { get; set; }
Property Value
Let
Gets or sets the let document.
public BsonDocument Let { get; set; }
Property Value
Max
Gets or sets the max key value.
public BsonDocument Max { get; set; }
Property Value
MaxAwaitTime
Gets or sets the maximum await time for TailableAwait cursors.
public TimeSpan? MaxAwaitTime { get; set; }
Property Value
MaxTime
Gets or sets the maximum time.
public TimeSpan? MaxTime { get; set; }
Property Value
Min
Gets or sets the min key value.
public BsonDocument Min { get; set; }
Property Value
Modifiers
Gets or sets the modifiers.
[Obsolete("Use individual properties instead.")]
public BsonDocument Modifiers { get; set; }
Property Value
NoCursorTimeout
Gets or sets whether a cursor will time out.
public bool? NoCursorTimeout { get; set; }
Property Value
- bool?
OplogReplay
Gets or sets whether the OplogReplay bit will be set.
[Obsolete("OplogReplay is ignored by server versions 4.4.0 and newer.")]
public bool? OplogReplay { get; set; }
Property Value
- bool?
ReturnKey
Gets or sets returnKey. If true, returns only the index keys in the resulting documents.
public bool? ReturnKey { get; set; }
Property Value
- bool?
ShowRecordId
Gets or sets whether the record Id should be added to the result document.
public bool? ShowRecordId { get; set; }
Property Value
- bool?