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

link|improve this question

70% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.