What is the best way to map UInt32 type to sql-server int type with NHibernate.
The value is a picture width/height so negative value are not make sense here.
But maybe I should use int because NHibenate doesn't support unassigned ints.
|
What is the best way to map UInt32 type to sql-server int type with NHibernate. The value is a picture width/height so negative value are not make sense here. But maybe I should use int because NHibenate doesn't support unassigned ints.
| |||
|
feedback
|
|
You can map the column with an IUserType.
And the IUserType which maps
| ||||
|
feedback
|
|
a year late but, since i had the same question and found a different answer, i thought i'd add it. it seems simpler. maybe i havent discovered its flaw yet. i'm using NHibernate 3.0, Visual Studio 2005, .NET 2.0.x i found i could use .NET's UInt32 class and not include the type attribute in the hbm.xml.
| |||
|
feedback
|