I have a dataset with datetime columns in which there are only h:mm:ss. I would like to filter the dataset where a value would be between to column values.
x > T1 and x < T2
the x value is given in integer, representing a number of seconds.
expression = "x > columnNameT1 and x < columnNameT2";
DataRow[] foundRows;
foundRows = dt_Tags.Select(expression)
How would expression look like?
Thanks