vote up 3 vote down star

I have a property of type uint on my entity. Something like:

public class Enity
{
   public uint Count {get;set;}
}

When I try to persist that into the SQL Server 2005 database, I get an exception

Dialect does not support DbType.UInt32

What would be the easiest way to workaround this. I could for example store it as long in the DB. I only don't know how to tell that to NHibernate.

flag

77% accept rate

4 Answers

vote up 1 vote down check

The cleanest, most official solution would probably be to write a user type.

Take an example, like this one and adapt it. If you have many uint's, it is worth to have a user type.

<property name="Prop" type="UIntUserType"/>
link|flag
Yeah, that's what I ultimately ended up doing. Thanks for help guys, all of you. – Krzysztof Koźmic May 27 at 9:19
vote up 0 vote down
<property name="Prop" type="long"/>
link|flag
Then may be you should describe the problem a little better – Alex Reitbort Mar 12 at 18:34
This did work for me... with type="long" SchemaExport exports the field as BIGINT – Mauricio Scheffer Mar 12 at 21:40
what version of NHibernate do you use? – Krzysztof Koźmic Mar 13 at 7:09
NH 2.0.1GA... are you getting the same exception after defining type="long"? – Mauricio Scheffer Mar 13 at 15:54
just tested this, seems to work... code.google.com/p/mausch/… – Mauricio Scheffer Mar 19 at 1:50
show 1 more comment
vote up 0 vote down

You could try to add another private "mirror"-property.

public class Enity
{
   public uint Count {get;set;}

   private long CountAsLong 
   { 
     get { return Convert.ToInt64(Count); } 
     set { Count = Convert.ToUInt(value); }
   }
}

<property name="CountAsLong" type="long"/>

Of course you should do this only if it could not be solved by the mapping.

link|flag
vote up 0 vote down

Haven't tried this so not sure if this will work for you but you could try creating your own Dialect and registering that in the web.config/app.config

Dialect class:

public class MyDialect:MsSql2005Dialect
{
    public MyDialect()
    {            
        RegisterColumnType(System.Data.DbType.UInt32, "bigint");            
    }
}

Web.config:

configuration>
 <configSections>
  <section name="hibernate-configuration" type="NHibernate.Cfg.ConfigurationSectionHandler, NHibernate" />
 </configSections>

                <hibernate-configuration xmlns="urn:nhibernate-configuration-2.2">
  <session-factory>
   <property name="connection.provider">NHibernate.Connection.DriverConnectionProvider, NHibernate</property>
   <property name="connection.connection_string">
    Server=127.0.0.1; Initial Catalog=thedatabase; Integrated Security=SSPI
   </property>
   <property name="dialect">MyDialect</property>
   <property name="current_session_context_class">managed_web</property>
  </session-factory>
 </hibernate-configuration>
    <!-- other app specific config follows -->

</configuration>
link|flag

Your Answer

Get an OpenID
or

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