Search Results for

    Show / Hide Table of Contents

    Class AggregationResultItem

    Aggregation result item

    Inheritance
    System.Object
    AggregationResultItem
    Inherited Members
    System.Object.ToString()
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    Namespace: System.Dynamic.ExpandoObject
    Syntax
    public class AggregationResultItem

    Properties

    Active

    True if the current result item matches on of the aggregation filters sent in the query.

    Declaration
    public bool Active { get; set; }
    Property Value
    System.Boolean

    AggregationResults

    Inner aggregation results, if inner aggregations were provided in the query.

    Declaration
    public ICollection<AggregationResult> AggregationResults { get; set; }
    Property Value
    System.Collections.Generic.ICollection<AggregationResult>

    Count

    Number of items matched.

    Declaration
    public long Count { get; set; }
    Property Value
    System.Int64

    Filter

    Ready to use filter to filter the data based on the aggregation result values.
    It can be passed as one of the aggregation filters of an aggregation query: it returns documents meeting the aggregation condition.

    Declaration
    public AggregationFilter Filter { get; set; }
    Property Value
    AggregationFilter

    Name

    Value matched.

    Declaration
    public string Name { get; set; }
    Property Value
    System.String

    Methods

    FromJson(String)

    Declaration
    public static AggregationResultItem FromJson(string data)
    Parameters
    System.String data

    Returns
    AggregationResultItem

    ToJson()

    Declaration
    public string ToJson()
    Returns
    System.String

    Back to top Generated by DocFX