Tagged Questions
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
672 views
How do you compare using .NET types in an NHibernate ICriteria query for an ICompositeUserType?
I have an answered StackOverflow question about how to combine to legacy CHAR database date and time fields into one .NET DateTime property in my POCO
here (thanks much Berryl!). Now i am trying to ...
0
votes
1answer
159 views
Selecting CompostiteUserTypes with Linq To nHibernate (v1)
We've a mature nHibernate project that has started using the linq provider in nHibernate contrib. As we are using nHibernate 2.0 we can't use the new provider under development in the trunk (against ...
0
votes
1answer
55 views
NHibernate ICompositeType Implementation for Uri
Is there any ICompositeType implementation for System.Uri?
I want to be able to use this query: where a.Uri.schema == 'https'.