#2153 - QueryBeans: OneToMany Map property is handled as PScalar instead of TQAssocBean

This commit is contained in:
Robin Bygrave
2021-02-10 13:52:29 +13:00
parent b3d439ed11
commit ab9cdd8f5b
6 changed files with 78 additions and 16 deletions
@@ -0,0 +1,15 @@
package org.querytest;
import org.example.domain.query.QContact;
import org.junit.Test;
public class QContactTest {
@Test
public void test_oneToManyMap() {
new QContact()
.others.fetch()
.findList();
}
}