#2154 - QueryBeans: TargetEntity is not evaluated during bean generation resulting in bad query beans

This commit is contained in:
Robin Bygrave
2021-02-10 15:10:03 +13:00
parent ab9cdd8f5b
commit 53aacabce7
6 changed files with 134 additions and 27 deletions
@@ -0,0 +1,24 @@
package org.querytest;
import org.example.domain.query.QAreaImpl;
import org.example.domain.query.QCityImpl;
import org.junit.Test;
public class TargetTest {
@Test
public void test_oneToMany() {
new QAreaImpl()
.cities.fetch()
.findList();
}
@Test
public void test_manyToOne() {
new QCityImpl()
.country.fetch()
.findList();
}
}