Search Results for

    Show / Hide Table of Contents

    Class TermsFilter

    Filters values containing at least one of the terms

    Inheritance
    object
    FilterBase
    TermsFilter
    Inherited Members
    FilterBase.FromExpression<TObject>(Expression<Func<TObject, object>>, string, Analyzer)
    FilterBase.FromExpression<TObject>(Expression<Func<TObject, TranslatedStringDictionary>>, string, string, bool)
    FilterBase.FromExpression<TObject>(Expression<Func<TObject, object>>, params string[])
    FilterBase.FromExpression<TObject>(Expression<Func<TObject, object>>, Analyzer, params string[])
    FilterBase.FromExpression<TObject>(Expression<Func<TObject, TranslatedStringDictionary>>, string, IEnumerable<string>)
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: System.Dynamic.ExpandoObject
    Syntax
    [GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
    public class TermsFilter : FilterBase

    Properties

    Field

    The field's name to execute the filter on. It is composed by the field ids of the hierarchy joined with "."
    (i.e. personLayer.address.street).

    Declaration
    [JsonProperty("field", Required = Required.Always)]
    [Required]
    public string Field { get; set; }
    Property Value
    string

    Terms

    The list of values to be filtered on. At least one must match to return results.

    Declaration
    [JsonProperty("terms", Required = Required.Always)]
    [Required]
    public ICollection<string> Terms { get; set; }
    Property Value
    ICollection<string>

    Methods

    FromJson(string)

    Declaration
    public static TermsFilter FromJson(string data)
    Parameters
    string data

    Returns
    TermsFilter

    ToJson()

    Declaration
    public string ToJson()
    Returns
    string

    Back to top Generated by DocFX