Daniele Mancini

Results 8 comments of Daniele Mancini

Is there an official solution for JDK11+, to be used in conjunction with expressions? The proposed patch does not work (gradle 7.3.3 and JDK11) because `MethodHandles.privateLookupIn(Class.forName(fullName), lookup)` fails (the class...

Upon further investigation, I was able to make the code work applying the following changes to the code base: - Comment out this assert https://github.com/mstrobel/procyon/blob/fec0d7ae031403b4a56fc2f2fd801fc6d416305a/Procyon.Expressions/src/main/java/com/strobel/expressions/BoundConstants.java#L65-L67 which does not take into...

To be honest, I think that an implicit conversion between primitive and Number is a bit of a stretch too, but it was quite handy! On the other side, reference...

I had a look at that, and it seems really good! To be honest, I had already implemented a solution to port Procyon to JDK 11 using method handles (is...

Have you considered migrating the runtime code generation part to [ASM](https://asm.ow2.io/), or maybe make the code generation classes pluggable, so that it is possible to provide a different implementation of...

@WellspringCS You can use [QueryTypes](https://docs.microsoft.com/en-US/ef/core/modeling/query-types) to define the output of your SQL/SP/TVF, so you use an actual Entity if and only if the resultset is an exact match. Otherwise, just...

Have you tried using `` I doubt that token substitution can account for missing quotes.

I am currently using artifacts path, and adding a Directory.Build.targets (at the solution root) like this ```xml ``` works as stated in https://github.com/dotnet/efcore/issues/23853#issuecomment-2183607932.