Rafał Pysz

Results 7 comments of Rafał Pysz

I've got similar issues with a monorepo keeping hono and nextjs applications. No honojs examples from the webside was working without typescript yelling about some jsx errors. The work-around i've...

Installed hono as peer dependency, seems that fixed my nextjs compilation errors. ``` { "peerDependencies": { "hono": "4.0.2" } } ```

Your snippet of code works well but with IQueryable datasource tied to in-memory collection. It does not work with IQueryable coming from EFCore DBContext. The exception i get is the...

LINQ queries to EFCore will have exactly the same issues. I assume the same mechanisms are used underneath by Gridify. It is possible to build LINQ Expression the way that...

Thank you very much! I will take a look at this when i'll sit down to improvements to my grid.

Hi @alirezanet, I had to make some improvements in my internal grid, add Contains filter for enum column. My custom operator just wasn't ready to handle other than string primivites....

Next-intl's middleware must be the first one that produces the response to work properly. It won't use response produced by the others even if does not do any redirects. It...