2
votes
6answers
451 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 …
1
vote
1answer
194 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 …
3
votes
2answers
431 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 …
