Our products have a IsDeleted flag, so the products stay in the database when deleting them. (They are just flagged as deleted)
It is annoying to always check the deleted flag when querying the server (where c.IsDeleted == False && ...). Is there a way to centralize this? In the DbContainer / Context or somewhere else?
Another solution is to use an extension method. This won't exactly centralize, but will encapsulate.
Interface:
Usage: