I am trying to update my date column in oracle using nhibernate but I keep getting
“Not a valid month” exception
private static void InitializeSessionFactory()
{
_sessionFactory = Fluently.Configure().Database(OracleClientConfiguration.Oracle10.ShowSql().ConnectionString("Data Source="")
).Mappings(m =>
m.FluentMappings.AddFromAssemblyOf<Status>())
.BuildSessionFactory();
}
The variable that I used is a DateTime object and the column is date type.
Thanks you for your help
There was a problem with the table structure