Method DeleteRow
DeleteRow(List<string>)
Removes the specified rows from the specified table.
public int DeleteRow(List<string> rows)
Parameters
Returns
- int
The number of remaining rows in the table.
DeleteRow(string[])
Removes the specified rows from the specified table.
public int DeleteRow(string[] rows)
Parameters
rowsstring[]The primary keys of the rows to remove.
Returns
- int
The number of remaining rows in the table.
DeleteRow(int)
Removes the specified row from the specified table.
public int DeleteRow(int row)
Parameters
rowintThe 0-based index of the row.
Returns
- int
The number of remaining rows in the table.
DeleteRow(string)
Removes the specified row from the specified table.
public int DeleteRow(string row)
Parameters
rowstringThe primary key of the row to remove.
Returns
- int
The number of remaining rows in the table.