Tagged Questions
CompositeUserType is a Java Interface provided by Hibernate that allows to define a custom type mapping.
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
0answers
61 views
How to use many-to-one associations in CompositeUserTypes
does anybody have a sample on how to use a CompositeUserType that contains a many-to-one association?
How to convert the foreign key received in the 'nullSaveGet' method into the corresponding ...
2
votes
6answers
968 views
Map database column1, column2, columnN to a collection of elements
In legacy database tables we have numbered columns like C1, C2, C3, C100 or M1, M2, M3, M100.
This columns represent BLOB data.
It is not possible to change anything it this database.
By using JPA ...
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
671 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'.