I would like all my DbSet
to filter all calls
That is, I would like all DbSet
to do the following filter:
Where(x => x.active == true)
Without the need of all the time I have to do dbo.Models.Where(x => x
How could I create something like this without using respository pattern
?