Smit Patel
Smit Patel
@f135ta - HasQueryFilter would certainly live on OnModelCreating method. Basically, it is like tell us all the filters you would like your model to have. And then a different mechanism...
We discussed this issue in team meeting again. Currently `IgnoreQueryFilters` is query-level flag which ignores all query filters. With named filter more semantics come into play that would ignore the...
We `dotnet new class` to generate new class in C# dev kit and we have received multiple feedback from customers that they would like the namespace to be aligned with...
We need full repro code here for us to investigate.
Blocked on #20291
@cjstevenson - The value you provided as example does not cause any SQL injection. EF Core escapes quotes properly in the SQL. Generated SQL for example ```C# SELECT [b].[Id], [b].[Value]...
@reloaded - Since you want to filter on base type, you should be able to do that even with current functionality.
```C# public class Blog { public int Id { get; set; } } public class SpecialBlog :Blog { } // Query Filter modelBuilder.Entity().HasQueryFilter(e => !(e is SpecialBlog)); ``` ```C# //...
There are possibly other ways to write the same query as a work-around since these operators cannot be translated to SQL in direct native way. (There exist `OVER` clause for...
Not a regression since grouping.First didn't work in previous release. Queries with OrderBy/Select after grouping+Select throws client eval error for me since we couldn't translate `p=> p.MyField` Filed #26753 Count...