Gert Arnold
Gert Arnold
Forgot to mention: I'm planning to use QueryFilter in a database-first context, so I can't use the superior DynamicFilters.
For the time being, a work-around is using this function mapping, although I don't like the hack: ```c# public static int? SumNullable(int? number) => throw new InvalidOperationException($"{nameof(SumNullable)} cannot be called...
The function above can only be used in single 1-dimensional queries. In projections, the generated query is illegal (in SQL Server) because of queried fields that are not in a...
Real-world case where users only have INSERT permissions: [How to prevent primary key reading back after DbContext.Add()](https://stackoverflow.com/questions/78839529/how-to-prevent-primary-key-reading-back-after-dbcontext-add). An OUTPUT clause requires SELECT permissions. So this is another case where not...