Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an entity with a DateTime property that is mapped to a table in an Oracle database.

The following query leads to NHibernate using a non-existent date function instead of trunc:

session.Query<MyEntity>().Where(x => x.MyProperty.Date = myDate);

The resulting SQL is something like this:

select <columns> from MY_ENTITY where date(MY_PROPERTY) = :p0;

How to tell NHibernate to use trunc instead?

I am using the ODP.NET provider of NHibernate (OracleDataClientConfiguration.Oracle10).

share|improve this question

1 Answer

up vote 2 down vote accepted

This issue was fixed about a month ago, but a stable version hasn't been released yet (as of 15/Feb/2012)

Until that happens, just inherit from Oracle10gDialect and register the function in the constructor:

RegisterFunction("date", new StandardSQLFunction("trunc", NHibernateUtil.Date));

Then configure NH to use the modified dialect.

share|improve this answer
Thanks, that's what I did already in the meantime. Good to know it is fixed! :-) – Daniel Hilgarth Feb 15 '12 at 17:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.