I need to cast a DATE value in a query to a TIMESTAMP WITH TIME ZONE, but currently I\'m getting the TimeZone Region (\'Europe / Paris\') which is not valid to be used by EF. >
You can cast the DATE to a TIMESTAMP, then use FROM_TZ to convert this timestamp to a timestamp with time zone:
DATE
TIMESTAMP
SQL> SELECT from_tz(CAST (SYSDATE AS TIMESTAMP), '+01:00') tz FROM dual; TZ ------------------------------------------------- 07/03/14 09:47:06,000000 +01:00