In my database I have a Date stored as a String, I would like to query a range of dates, server-side. Unfortunately it is a third-party application so I cannot change the schema.
Normally, in MySQL I would use STR_TO_DATE()
, or CONVERT()
.
How can I query a string date in MySQL using the Entity Framework when it doesn't support things like DateTime.Parse()
?