[fluent-nhib] Re: AutoMap collection of elements

2009-05-25 Thread arnetheduck
Thanks! On May 19, 4:11 pm, Hudson Akridge wrote: > Was not a ticket for this, so it looks like it's still outstanding. You can > keep track of it's progress > here:http://code.google.com/p/fluent-nhibernate/issues/detail?id=236 > > On Tue, May 19, 2009 at 9:07 AM, Hudson Akridge > wrote: > >

[fluent-nhib] Re: AutoMap, Inheritance and Reference

2009-05-25 Thread Jon M
So, sorry if this is a stupid question, does that mean that there's no way to use automapping for subclasses at all? On May 25, 11:36 pm, "Martin Hornagold" wrote: > This is because AutoJoinedSubclass does not implement IJoinedSubclass. > I raised this wayback and submitted a patch, but it never

[fluent-nhib] Re: AutoMap, Inheritance and Reference

2009-05-25 Thread Martin Hornagold
This is because AutoJoinedSubclass does not implement IJoinedSubclass. I raised this wayback and submitted a patch, but it never got applied. Until this is fixed you can't use conventions with AutoJoinedSubclass -Original Message- From: fluent-nhibernate@googlegroups.com [mailto:fluent-n

[fluent-nhib] Re: Table per subclass mapping strategy when inheritance is more than 1 level deep

2009-05-25 Thread Hudson Akridge
Yes, this is possible, although I'm not sure about combining the discriminator on the base class tables. NHibernate will figure out what your concretes are based on the direction the joins match through the table structure. Nested Joined subclasses are allowed. On Mon, May 25, 2009 at 7:33 AM, Dra

[fluent-nhib] Table per subclass mapping strategy when inheritance is more than 1 level deep

2009-05-25 Thread Drakiula
Hi, I posted the following to the nhusers group as well, at http://groups.google.com/group/nhusers/browse_thread/thread/ab409f999e909106 Maybe any of you guys have a definite answer on this: I have the following class inheritance hierarchy: public class A {} public class B : A {} public class C