.Dataset().Row()
Row api
.Dataset(...)
.Row(int id)
This method returns a Row
instance, which provides methods which can be used to read and manipulate the data of a row in a CloudTable.
Note that the result from this method can be stored should you wish to operate on the row multiple times - for example, the following code will get the data for a given row, check a value in it, and if it meets certain criteria, deletes it:
var row = api.Dataset('{dataset-id}').Row(id);
var rowData = await row.Data();
if (rowData.data.dp_1 > 10) {
await row.delete();
}
The returned object is an instance of the Row
class which provides the following methods:
.Dataset().Row().Data()
.Dataset().Row().Delete()
.Dataset().Row().Update()