Common.QueryPlanDAL.Query

Parameters:

Name Type Description
con Condition

Returns: List<QueryPlan>

Sample:

Request:

    {
    "jsonrpc": "2.0",
    "method": "Common.QueryPlanDAL.Query",
    "params": {
        "con" : {
          "Type": "Eteam.ORM.Common.Condition, Eteam.ORM.Common",
          "Context": "",
          "AndOr": "",
          "NoLock": false,
          "Items": []
        } /* [Condition]*/
        
    },
    "id": 1,
    "tags": {
        "usertoken": "",
        "sessionid": ""
    }
  }
Response:
{
  "jsonrpc": "2.0",
  "result": [
    {
      "Id": 1,
      "UserId": "",
      "Name": "",
      "EntityType": "",
      "Condition": "",
      "IsPublic": false
    }
  ],
  "error": null,
  "id": 1
}