Tagged Questions

6
votes
5answers
219 views

Can I query a UserType with several properties mapped to a single column?

I have the following domain model: public class Name { private readonly string fullName; public Name(string fullName) { this.fullName = fullName } public string FullName { get { return ...
4
votes
2answers
703 views

Unit testing NHibernate UserTypes

Does anyone have a good approach towards unit testing their UserTypes? By way of example, I have an object in my model called DateRange, which has a DatePoint start and DatePoint end. In addition to ...
3
votes
2answers
1k views

NHibernate CompositeUserType: How to specify Sql Types?

Using NH 2.0, I have a custom type. It is composed of four properties, so I implemented ICompositeUserType. I want to specify length and precision for the string and decimal properties within the ...
2
votes
1answer
787 views

NHibernate mapping: UserTypes with many-to-one

New to NHibernate and learning it as we are modifying an existing solution to use this ORM. Ideally, the storage structure and object classes need to stay the same, so Ive come across one or two ...
1
vote
1answer
76 views

nhibernate user type composition

Say I have an immutable ICompositeUserType to deal with a DateRange, or Money, and then it turns out that I have another value object (ie, immutable) that has either a DateRange or Money property ...
1
vote
1answer
443 views

Error mapping UserType from to property with NHibernate

I needed a way to trim strings within my persistent class because my legacy database is using char fields. I downloaded the nHhaddIns dll to use its TrimString class which is derived from IUserType. ...
1
vote
1answer
2k views

NHibernate property mapping: columns and formula

When i map columns from the inspected table, i do this: <property name="InstanceName" type="MyNameUserType, MyApp.MyNamespace"> <column name="Name"/> <column name="Name2"/> ...
0
votes
1answer
193 views

NHibernate UserType value on object

I'm using a UserType to maintain a column (Created) in my db. When saving to db i simply check if the property in question equals DateTime.MinValue, and if so updates it to DateTime.Now (overriding ...
-1
votes
4answers
317 views

NHibernate Mapping - UserType with a column being re-used?

I basically have a Money value type, which consists of Amount and Currency. I need to map multiple Money values into a table, which has multiple fields for amount, but only one currency. In order ...