Filtering Records
Pass aDictionary<string, string> of filters to SearchAsync to narrow down results. Filter keys follow the pattern EntityName_PropertyName. Multiple filters are combined with AND logic.
Filter by text field
Filter by email
Filter by enum
Pass the integer value of the enum member:Filter by foreign key ID
Filter by related entity property
Use dot-separated paths to filter on properties of related entities:Combine multiple filters
All filters are ANDed together. You can also combine filtering with pagination:Sorting results
In addition to filtering, you can control the sort order by passingorderBy and dir to SearchAsync:
If
orderBy is not specified, the API uses the entity’s default sort property.