Tagged Questions
The iusertype tag has no wiki summary.
4
votes
1answer
184 views
How do you map a DateTime property to 2 varchar columns in the database with NHibernate (Fluent)?
I'm dealing with a legacy database that has date and time fields as char(8) columns (formatted yyyyMMdd and HH:mm:ss, respectively) in some of the tables. How can i map the 2 char columns to a single ...
4
votes
1answer
508 views
Constructing query against IUserType in NHibernate
How can I construct a query against an custom IUserType field in NHibernate?
More specifically:
I'm working on a brownfield application. I have a field in the database called "State" which contains ...
3
votes
1answer
96 views
NHibernate QueryOver on an IUserType
First let me apologize a bit for the length of this post, it's mostly code though so I hope you all bear with me!
I have a scenario in dealing with a legacy database, where I needed to write an ...
3
votes
1answer
160 views
NHibernate linq query with IUserType
In my project I use a IUserType (BooleanM1) that handles boolean values and writes -1 for true and 0 for false values to the database. So far everything works well. The mapping looks like
this:
...
2
votes
1answer
52 views
Map custom type in FluetnNhibernate
I have 2 classes.
public class Name
{
public string FirstName { get; set; }
public string LastName { get; set; }
}
class Person
{
public virtual Name Name { get; set; }
public ...
1
vote
1answer
28 views
Preloading IUserType with values from webservice
This post:
http://kennytordeur.blogspot.com/2011/04/nhibernate-in-combination-with_06.html
Describes how to load an entity from a resource other than a database, in this case a webservice. This is ...
1
vote
1answer
73 views
NHibernate: Many-to-one IUserType
Following on from this question:
NHibernate: Lazy loading of IUserType
Seeing as I can't lazy load a property or a one-to-one relationship, is there a way I can use an IUserType with a many-to-one? ...
1
vote
2answers
200 views
Mapping an IUserType to a component property in fluent NHibernate
I'm trying to implement an IUserType for states and country codes that will allow me to access both the two-letter code (what's stored in the database) as well as the full name. I'm following the ...
1
vote
1answer
104 views
EF4 equivalent of NHibernate IUserType
I want to map a model property of type TimeZoneInfo to a column in the database. In NHib, I just made an IUserType "TimeZoneInfoString" that converted back and forth and then used a typedef. How can ...
1
vote
2answers
501 views
Why is Fluent NHibernate ignoring my convention?
I have a convention UserTypeConvention<MyUserType> where MyUserType : IUserType where MyUserType handles an enum type MyEnum. I have configured Fluent NHibernate thusly
sessionFactory = ...
0
votes
1answer
58 views
NHibernate part load entity from database, part load from WCF
I've been looking at loading enities from WCF:
NHibernate: Lazy loading of IUserType
NHibernate: Many-to-one IUserType
Preloading IUserType with values from webservice
I've worked out how to lazy ...
0
votes
1answer
102 views
Create an IUserType for a generic option class with nhibernate
I'm looking for a way to create an IUserType for an option type class. Here is the option type class code:
public static class Option
{
public static Option<T> Some<T>(T value)
...
0
votes
0answers
144 views
NHibernate: Bind model from non-primary-key field
I have a CreatedBy field on every object in my DB. Right now it is stored as a GUID (primary key of the users table) and it binds to a User object through a many-to-one mapping. This is functioning ...
0
votes
1answer
98 views
NHibernate Map class name and resolve it with Reflection
I have a property of a class that is mapped to another class that can't be stored in the database and can't be serialized; it implements the state pattern.
So I have something like this:
public ...
0
votes
1answer
226 views
IQuery NHibernate - do I have to Encrypt a parameter that is an encrypted IUserType?
Situation: suppose I have a column on an entity which is encrypted in the database using IUserType:
public class EncryptedStringUserType : IUserType
{
public object NullSafeGet(IDataReader rs, ...
0
votes
1answer
2k views
How can I diagnose/fix this NHibernate.PropertyAccessException?
Given the following Fluent NHibernate maps:
public class FastTrackPackageClassMap : ClassMap<FastTrackPackage>
{
public FastTrackPackageClassMap()
{
Id(x => x.Id);
...