If I specify PropertyRef on References (Many to One) - it eagerly fetches all related records:
References(x => x.Panel).PropertyRef(x => x.Code).Not.Insert().Not.Update();
Can I disable that N + 1 select problem?
Here I can see that this problem is known, but is there any workaround? Lazy loading not working for many-to-one relationship when mapping to a non-key field using property-ref