Class PrefixFilter
Filters field's values based on a prefix
Inherited Members
Namespace: System.Dynamic.ExpandoObject
Syntax
[GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
public class PrefixFilter : 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
Prefix
The value to be used as prefix.
Declaration
[JsonProperty("prefix", Required = Required.Always)]
[Required]
public string Prefix { get; set; }