This is one of those annoyances begging for a proper solution to avoid having to repeat the same workaround over and over again...
Is anyone aware of a Mongoose Framework method or otherwise, that will take the date format returned from an IDO LoadCollection request (20201118 00:00:00) and convert it into either a SQL format (2020-11-18 00:00:00) that DateTime.Parse can parse, or directly into a DateTime object? Casting (DateTime) and GetValue<DateTime> also fail because of the unrecognized date format.
The current workaround that I and others that I know do is to use a series of string.Substring() methods to pull out the date parts and create a DateTime object out of the parts.
Thanks,
Tim