c# - How to remove a certain row from DataTable? -


How can I get a simple SQL query like

  Delete from user where userCity = 'Munich'?  

with datatabase?

Without using ps Linq or something like that, I do not use it because of the project.

  detroord [] rows; Rows = dataetable Select ("UserCity = 'Munich' '); Forward (Route Data Row) R. Delete ();  

Comments