What is soft delete?
Implementation strategies in EF Core?
- Mark entities as deleted without physically removing them.
- Implemented using a boolean flag and global query filters to exclude “deleted”
records.
Implementation strategies in EF Core?
records.