When I convert a Date to a string in ESQL, can I choose what format the string should be in?
Here's my ESQL:
data.select("cast(it.DateCreated AS System.String)")
Which produces results like:
Jun 1 2012 12:00AM
but I really want
6/1/2012
** EDIT: I came up with a very bad solution of casting to System.DateTime first...
audits.select("cast(cast(it.DateCreated AS System.DateTime) as System.String)")
That creates two casts in the generated T-SQL which sounds very slow and unpleasant. There must be a better way!