I am trying to reference a component from a subclass map but am getting the following exception

"Visitor attempted on unresolved componented reference 'Weight', referenced from property 'Weight' of 'RecipeFermentable', unable to continue."

public class RecipeFermentableMap : SubclassMap<RecipeFermentable>
{
    public RecipeFermentableMap()
    {
        Map(x => x.Pppg);
        Component(x => x.Weight);

        References(x => x.Recipe);
    }
}

This work when I do it with a normal ClassMap but stopped working after re-factoring into a SubclassMap.

link|improve this question
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.