Using the automapping to expose a Sql Server 2008 configuration when you have UInt32 properties
I have objects with UInt32 properties and I'm trying to use automapping to create a configuration. It's failing due to the "dialect" not supporting UInt32. How would I go about autogenerating a configuration. I'm happy for NHibernate to map it to anything it see fit (e.g. bigint).
I've been trying to write an IUserType to do it, based on some posts I found, but changes to Fluent NHibernate means that much of the post code doesn't compile.
Support Staff 2 Posted by James Gregory on 16 May, 2010 04:46 PM
If you're using an
IUserType
you should just be able to callCustomType
after yourMap
call.