Class Find<T>
Represents a MongoDB Find command.
TIP: Specify your criteria using .Match() .Sort() .Skip() .Take() .Project() .Option() methods and finally call .Execute()
Note: For building queries, use the DB.Fluent* interfaces
Inherited Members
Object.Equals(Object)
Object.Equals(Object, Object)
Object.GetHashCode()
Object.GetType()
Object.MemberwiseClone()
Object.ReferenceEquals(Object, Object)
Object.ToString()
Namespace: MongoDB.Entities
Assembly: MongoDB.Entities.dll
Syntax
public class Find<T> : Find<T, T> where T : IEntity
Type Parameters
Name | Description |
---|---|
T | Any class that implements IEntity |