I have a column in Oracle that is a TIMESTAMP(6) WITH TIME ZONE. I am getting an exception when attempting to load records from the table: System.ArgumentOutOfRangeException : Year, Month, and Day parameters describe an un-representable DateTime.
Here is what I have tried for the mappings:
Map(x => x.ExpirationDate, "EXPIRE_DATE").CustomType("timestamp").CustomSqlType("TIMESTAMP(6) WITH TIME ZONE").Nullable();
Map(x => x.ExpirationDate, "EXPIRE_DATE").CustomSqlType("TIMESTAMP(6) WITH TIME ZONE").Nullable();
Map(x => x.ExpirationDate, "EXPIRE_DATE").CustomSqlType("timestamp").Nullable();
Map(x => x.ExpirationDate, "EXPIRE_DATE").CustomType("timestamp").CustomSqlType("timestamp").Nullable();