How do we manipulate DateTime objects in dataset's expression-based columns?
Michael Le
Select an image from your device to upload
Thanks for the reply. However, you must have misundertood my question. What I was trying to do was to add an expression-based column in DataSet object which calculates a date based on another DateTime column. Specifically, I have a collumn named DateEnrolled. I want to add another column name ExpectedGradDate, which is equal to DateEnrolled + 180 (days). I've tried to put the following in the Expression property of the added column:1. DateEnrolled + 180 // did not work2. DateEnrolled.Add(180) // did not work either
Is there any way to work around this issue?