Hi, I want to map Oracle Date with dotnet nullable System.DateTime.I have data in oracle with column type as Date (nullable).I want to map this with Dotnet Nullable<DateTime>. My hbm mapping is like this <property name="CreationDate" column="CreationDate">
if i do this ,i m getting the error like System.ArgumentOutOfRangeException: Year, Month, and Day parameters describe an un-representable DateTime. at System.DateTime.DateToTicks(Int32 year, Int32 month, Int32 day) How to resolve this? -- You received this message because you are subscribed to the Google Groups "nhusers" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/nhusers?hl=en.
