Query language

Queries are defined by a valid JSON document. A query object consists of fields and values that must all match to make up the complete query.

Example queries

Match a single field:
/Services.svc/Example?query={"name": "Joe"}
Match multiple fields:
/Services.svc/Example?query={"name": "Joe", "age": 17}

Custom Table Data

To match fields in a custom table include the table name with the field name:
/Services.svc/Example?query={"TableName.name": "Joe", "TableName.age": 17}