Hi,
I've an issue on my domain and schema (inherited from the past :)).
I've two entities (not the real scenario) that inherit from a base class:
public astract class Person
{
}
public class Teacher : Person
{
public Address Address { get; set; }
}
public class Alumn : Person
{
public Address Address { get; set; }
}
Now I would move the Address property to the Person class but corectly NH
search
the column AddressId on the Person table, can I tell to it that the column
is on the
"derived" classes as is now in the schema? Using the by-code mapping.
Thanks!
--
---
You received this message because you are subscribed to the Google Groups
"nhibernate-development" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.