I have a column is-deletedfor all tables in sql db. I wanted to know if there is a better way to handle the filter is-deletedglobally instead of putting a filter is-deletedfor each connection in linq in sql when querying db using efcore.
I have connections with 5-8 objects, and including each connection doesn't seem like good practice.
Is there a better template?
source
share