a wee bit of help with serialization & dates...
So i have this idea, and i'm experiencing a little difficulty with an XPath expression i need to write. Here's a serialized Person object:
<Person xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<DOB>1972-10-31T00:00:00.0000000-05:00</DOB>
</Person>
So what i want to find out is this. i need to write an XPath query that basically takes a looks to see if the Person/DOB node is less than today. i've tried a few variations, but none seem to work? Anyone want to lend a hand with some simple XPath to query with a date?
(shames self for not knowing)