Search Results for

    Show / Hide Table of Contents

    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

    Inheritance
    Object
    Find<T, T>
    Find<T>
    Inherited Members
    Find<T, T>.OneAsync(String, CancellationToken)
    Find<T, T>.ManyAsync(Expression<Func<T, Boolean>>, CancellationToken)
    Find<T, T>.ManyAsync(Func<FilterDefinitionBuilder<T>, FilterDefinition<T>>, CancellationToken)
    Find<T, T>.MatchID(String)
    Find<T, T>.Match(String)
    Find<T, T>.Match(Expression<Func<T, Boolean>>)
    Find<T, T>.Match(Func<FilterDefinitionBuilder<T>, FilterDefinition<T>>)
    Find<T, T>.Match(FilterDefinition<T>)
    Find<T, T>.Match(Template)
    Find<T, T>.Match(Search, String, Boolean, Boolean, String)
    Find<T, T>.Match(Expression<Func<T, Object>>, Coordinates2D, Nullable<Double>, Nullable<Double>)
    Find<T, T>.MatchString(String)
    Find<T, T>.MatchExpression(String)
    Find<T, T>.MatchExpression(Template)
    Find<T, T>.Sort(Expression<Func<T, Object>>, Order)
    Find<T, T>.SortByTextScore()
    Find<T, T>.SortByTextScore(Expression<Func<T, Object>>)
    Find<T, T>.Sort(Func<SortDefinitionBuilder<T>, SortDefinition<T>>)
    Find<T, T>.Skip(Int32)
    Find<T, T>.Limit(Int32)
    Find<T, T>.Project(Expression<Func<T, T>>)
    Find<T, T>.Project(Func<ProjectionDefinitionBuilder<T>, ProjectionDefinition<T, T>>)
    Find<T, T>.ProjectExcluding(Expression<Func<T, Object>>)
    Find<T, T>.IncludeRequiredProps()
    Find<T, T>.Option(Action<FindOptions<T, T>>)
    Find<T, T>.IgnoreGlobalFilters()
    Find<T, T>.ExecuteAsync(CancellationToken)
    Find<T, T>.ExecuteSingleAsync(CancellationToken)
    Find<T, T>.ExecuteFirstAsync(CancellationToken)
    Find<T, T>.ExecuteAnyAsync(CancellationToken)
    Find<T, T>.ExecuteCursorAsync(CancellationToken)
    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

    In this article
    Back to top Developed by Đĵ ΝιΓΞΗΛψΚ and contributors / Licensed under MIT / Website generated by DocFX