mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
18 lines
310 B
Java
18 lines
310 B
Java
package org.querytest;
|
|
|
|
import org.example.domain.query.QContact;
|
|
import org.junit.Test;
|
|
|
|
import java.time.ZonedDateTime;
|
|
|
|
public class QContactTest {
|
|
|
|
@Test
|
|
public void test_oneToManyMap() {
|
|
new QContact()
|
|
.others.fetch()
|
|
.zoneDateTime.before(ZonedDateTime.now())
|
|
.findList();
|
|
}
|
|
}
|