I have a mapping problem concerning interface-references in an composite-id: In the following class
class Foo
{
public virtual DateTime Date {get;set;}
public virtual IInterface Reference {get;set;}
}
I want to have both properties be part of the CompositeID. With Mapping Attributes this is done in the following way for a specific implementation InterfaceImpl:
[CompositeId]
[KeyProperty(1, Column = "col1", Name = "Date", TypeType = typeof(DateTime))]
[KeyManyToOne(1, ClassType = typeof(InterfaceImpl), Column = "refcol2", Name = "Reference")]
Is there a way how this is done in fluent?
Thanks in advance, MacX