We have a database table which has the following set up:
CREATE TABLE attendance_block (start_date DATETIME, end_date DATETIME); One application writes to this database and stores the dates as Unix Epoch dates, which it uses in its program logic. Another program (which we can change and have the source code to) uses NHibernate DateTime types, and stores data in the database in "regular" datetime formats, ie "2012-09-22". NHibernate throws a royal fit if we use DateTime types and there are Epoch dates in it. Is there a way to make NHibernate more flexible - ie, load the date regardless of whether it's in Epoch or "regular" format? -- Anthony -- You received this message because you are subscribed to the Google Groups "nhusers" group. To view this discussion on the web visit https://groups.google.com/d/msg/nhusers/-/dWKVo7kKw7oJ. 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.
