我正在尝试使用 nhibernate 更新我在 oracle 中的日期列,但我不断收到“Not a valid month”异常
private static void InitializeSessionFactory()
{
_sessionFactory = Fluently.Configure().Database(OracleClientConfiguration.Oracle10.ShowSql().ConnectionString("Data Source="")
).Mappings(m =>
m.FluentMappings.AddFromAssemblyOf<Status>())
.BuildSessionFactory();
}
我使用的变量是 DateTime 对象,列是日期类型。
谢谢你的帮助