Datatable select methode
C#
2
Posts
2
Posters
0
Views
1
Watching
-
Hi All, Im using a string to select some rows from my datatable: string expression; expression = "Act = '001' "; DataRow[] foundRowsq; foundRowsq = dtPar.Select(expression); Now how can i the not equal token in my expression? when i doe this im getting a error: expression = "Act != '001' "; So what should i use instead of != ? Thanx.
-
Hi All, Im using a string to select some rows from my datatable: string expression; expression = "Act = '001' "; DataRow[] foundRowsq; foundRowsq = dtPar.Select(expression); Now how can i the not equal token in my expression? when i doe this im getting a error: expression = "Act != '001' "; So what should i use instead of != ? Thanx.