Skip to content

Should be able to set field or property "Access" on nested components #370

@fassadlr

Description

@fassadlr

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?

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions