Ming Iu

Results 88 comments of Ming Iu

I'm using nan with Electron on 32-bit Windows, and the old "use 2.14.0" trick no longer works on the newest versions of Electron. I've tried building my modules using clang++....

I'll try to take a look at this sometime during the next week.

Ok, v1.8.28 is now in Maven Central, and it has support for doing where() and select() on streams that have been sorted. I won't bother updating the documentation though.

I'm a bit busy at the moment, so I'll take a closer look next week if I can find the time. In the past, I've had all sorts of problems...

Jinq already automatically reads in all the JPA relation information from the Criteria API metamodel. Hibernate has a small bug with @ ManyToOne relations where that information is incorrect, so...

The Criteria API metamodel is just a mechanism that Hibernate uses to expose its model to the outside for people using the Criteria API. Hibernate's internal representation is probably fine,...

Correct. You need to create a local variable to hold `this.sku`. Also, Jinq expects all accesses to fields to happen through getter methods, so instead of ``` .where(product -> product.sku.equals(sku))...

Well, it was an intentional decision by the Java 8 people to design lambdas in such a way that you can't use reflection on them to figure out what a...

Upgraded to ASM 6.0 in Jinq v1.8.22. A new jarjar wasn't needed because it simply ignores the module-info.class file.

Upgraded to ASM 6.1.1 in Jinq v1.8.24, which might be necessary for Java 10 support.