Is there an example of Table.Select(Expression)
where expression could be something like this:
Expression = "id in (1,2,3,4)"
I have a list if ids in a variable IdList
.
Table contains all the TS_Ids
where as the IdList
only has subset of the ids.
So I want something like this
string IdList = "(1,2,3,4)";
Table.Select("[ts_id] in IdList");