
Entity framework core: soft delete + workaround
Regardless of your opinion about whether soft delete is evil or is the panacea, the truth is that EF Core allow us to implement soft delete quite straightforwardly using Query Filters. Just as a reminder, soft delete is when we do not want to delete data from a database (hard delete), instead we mark the […]
Read more...