Joonatan Uusväli

Results 16 comments of Joonatan Uusväli

Yup, i write here to give support for updating the SDK for ESP8266.

Just tested with Linq2Db 6.0.0-preview-1 and unfortunately neiteher the `Where()` nor `OrderBy()` could even be parsed on their own. For `Where()` condition, I also tried `a.Any(x => b.Any(y => x...

This ticket was opened 2017 and it still has no real response?

I've been using Query Filters, but i had to abandon the attribute and go with fluent mapping as i needed multiple query filters applied on the same object. Example: I...

For me, query filters are the only suitable solution, because I'm doing mapping with expressions that traverse all associations, must obey all the filtering. The proposal by @viceroypenguin does not...

Thank you for reply @JonathanMagnan ! I have a design where filters are part of the entity definition and so the context is not registering filters directly. But I'll try...

I have tested it now purely on EF Core (without the EntityFramework Plus addition) and it does work, with some caveats. Consider this filter: ```csharp private static Expression ChangingFilter(AppDbContext dbCtx)...

Here's another ULID implementation in C#: https://github.com/ByteAether/Ulid This implementation avoids throwing exception when generating ULID. This topic is discussed here: https://github.com/ulid/spec/issues/39

I think I was able to solve it, but please let me know if I've "overdone" it. It looks a bit cumbersome and maybe I'm reinventing a wheel. Please do...