joonatanu-softwerk
joonatanu-softwerk
I have observed somewhat similar issue with `Skip()` and `Take()` methods. `query.Skip(10).Take(10)` will inline the values. `query.Skip(() => 10).Take(() => 10)` will parameterize the values. Is that expected behaviour?
Possibly related to this: https://github.com/linq2db/linq2db/issues/4347 Here we also project some nested objects and then the query generation starts to behave inconsistently. Eager to see that version 6 brings. :)
Thanks! I've stumbled upon this as i really have another potential bug to report. (I'm making a simplified example right now for ticket) In general gist, i want to add...
I don't have the full version that causes a bug. The scenario is that i have Permission table that links to User table. And whenever i query any table (of...
Listed C# library does not comply with the spec and it is their consciously made decision to violate the spec: https://github.com/Cysharp/Ulid/issues/61 Therefore it is not a good example of spec...