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
rows
string[]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
row
intThe 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
row
stringThe primary key of the row to remove.
Returns
- int
The number of remaining rows in the table.