🧑‍💻
DynamicWhere.ex
GitHubNugetTelegram
  • Getting Started
  • Change Log
  • Usage
    • Enums
    • Classes
    • Extensions
  • JSON Example
    • Condition
    • Condition Group
    • Order By
    • Page By
    • Filter
    • Segment
  • Ice Breaking
Powered by GitBook
On this page

Was this helpful?

  1. JSON Example

Condition

This JSON example represents a filtering condition for a dataset. It specifies that the dataset should be filtered based on the "ProductName" attribute, where the value should be equal to "apple." Additionally, it suggests a sorting priority of 1 for this condition.

{
  "Sort": 1,
  "Field": "ProductName",
  "DataType": "Text",
  "Operator": "Equal",
  "Values": ["apple"]
}
PreviousExtensionsNextCondition Group

Last updated 1 year ago

Was this helpful?