M
Mika M
Hi!
An application adds DataRows into DataTable in random period of time,
and after adding new rows saves DataTable as XML-file. DataTable
contains DateTime Field named as "SaveTime", and some other fields...
About "SaveTime" field, schema looks like...
<xs:element name="SaveTime" type="xs:dateTime" minOccurs="0" />
Q: Is it possible to retrieve easily only those rows where rows are for
example at least 10 minutes old according "SaveTime"?
I mean something like...
Dim drArr As DataRow() = dt.Select("SaveTime >= 10min")
....so how to make filterExpression correctly if it is possible?
An application adds DataRows into DataTable in random period of time,
and after adding new rows saves DataTable as XML-file. DataTable
contains DateTime Field named as "SaveTime", and some other fields...
About "SaveTime" field, schema looks like...
<xs:element name="SaveTime" type="xs:dateTime" minOccurs="0" />
Q: Is it possible to retrieve easily only those rows where rows are for
example at least 10 minutes old according "SaveTime"?
I mean something like...
Dim drArr As DataRow() = dt.Select("SaveTime >= 10min")
....so how to make filterExpression correctly if it is possible?