Azure-table-storage-aleph query

Hi,

I would like to query my table to return values of the column named "groupId". I am not able to understand the documentation for the query string which is

{
  "tableName": "MyTable", 
  "action": "Q", 
  "selectdata": "groupId", 
  "fromcolumn": "from", 
  "where": "equalCondition",
  "top": 5
}

I am getting confused about fromcolumn and where clause.

Thanks,

This works

{
"tableName": "MyTable",
"action": "Q",
"selectdata": "",
"fromcolumn": "groupId",
"where": "580",
"top": 5
}

Mentioned groupID in the where clause and it returns all the rows. Returns everything even I put any column name in "selectdata"

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.