I have an N+1 issue that happens on a property and can't figure out
what to do.

HasManyToMany<Facility>(x => x.Facilities)
                .Table("UGRXFAC").BatchSize(30)
                .ParentKeyColumn("UGRID")
                                .ChildKeyColumn("FACID")
                                .Access.CamelCaseField(Prefix.Underscore)
                                .NotFound.Ignore()
                .AsBag();
                    ;

Reply via email to