Rob Bygrave

Results 140 comments of Rob Bygrave

If you think there is a problem with LocalDateTime then I'd like to see a PR that is focused on showing that problem. Noting that the issue you describe with...

> why does the value change, if the JVM TZ changes Well, LocalDateTime is challenging to the point that there isn't an official implementation / pure JDBC use case to...

Supporting this via `fetch(FetchConfig config, TQProperty... properties)` For example: ```java private static final FetchGroup FETCHGROUP_CustomerWithContacts = QCustomer.forFetchGroup() .select(cu.name, cu.phoneNumber) .contacts.fetch(FetchConfig.ofQuery(1000), co.firstName, co.lastName, co.email) .buildFetchGroup(); new QCustomer() .select(FETCHGROUP_CustomerWithContacts) .findList(); ```

Are you saying that byte based parsers/generators have an advantage in some tests here? > and delegate the char->byte handling to some backbone like servlet container to not worry about...

It would be good to know: - The Database and version being used - The JDBC Driver and version being used - The Ebean version being used This feature uses...

Ok, apologies for the delay here. **Edit:** This following comment is not accurate, please ignore. ``` // IGNORE THIS, IT IS INCORRECT Looking at the tests and then the code...

Did you create a minimal test case that reproduces the issue perhaps based off https://github.com/ebean-orm-examples/example-minimal ?

## DtoQuery mapping > And another question to be asked: If DotQuery is used, how can I specifiy field mappings over convention(No hint was found in doc)? Take this for...

### Nested SQL To be explicit, when mapping ebean is using the jdbc resultSet metaData and so any nested sql has no impact. Only the top most select clause impacts...