Matthias Vill
Matthias Vill
@lauxjpn so when to expect some movement now? 8.0 sounds like autumn?
Looking up user-ids in the base-image sounds like a viable option to me. Especially, when we can do multi-layer-`Dockerfile`s. The only thing to look out for, is that changes in...
@elf-is You are referring to DataTableService.SearchAColumn? I believe, that you misunderstand the behaviour of EF Core and your Database here, and there isn't a lot LINQKit can do about this....
Just a first impression: `.AsQueryable().AsEnumerable()` looks suspicious. Generally EF Core is only able to translate `Expression`-stuff, as used by the `IQueryable`-methods; `IEnumerable` on the other hand uses compiled `Func`s, that...
Hey @StefH would you happen to have time to review this? This would allow to use LINQKit for some more use-cases outside of EF Core
Hey @furanzKafka, not sure what `ExpressionBuilder` is in this context; so I will assume you refer to `PredicateBuilder`. Your main problem also seems to be EF Core not knowing what...
@3F you likely only need to append `"t"` and not `"ct"` as `Environment.NewLine.Length == 1` on Linux, not `0`
Switching from `AppendLine` to `Append(..."\r\n")` or even something with a configurable line-break should solve this issue. Not sure, if there is an easy way to test how old NET Framework...