mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
#2154 - QueryBeans: TargetEntity is not evaluated during bean generation resulting in bad query beans
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user