As the heading states, I am unable to set Access on nested components. Consider the following scenario: ``` Component(a => a.houses, b => { b.Access.Field(); b.HasMany(c => c.Tenants) .AsSet() .Cascade.AllDeleteOrphan() .ForeignKeyConstraintName("fk_house_tenant") .KeyColumn("houseid") .Not.LazyLoad() .Component(comp=> { comp.Access.Field(); }); }); ``` comp.Access.Field(); is not available?