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 fullName; } }
public string FirstName { get { /* ... */ } }
public string MiddleNames { get { /* ... */ } }
public string LastName { get { /* ... */ } }
public static implicit operator Name(string name) { /* ... */ }
}
public class Person
{
public Name BirthName { get; set; }
public Name Pseudonym { get; set; }
}
I implemented IUserType so I can map each name to a single database column with the full name.
Queries like this work:
var people = session.QueryOver<Person>()
.Where(p => p.Name == "John Doe")
.List();
But I can't query like this:
var people = session.QueryOver<Person>()
.Where(p => p.Name.LastName == "Doe")
.List();
Can I make NHibernate work with this?