A very simple implementation for soft deleting entities in Ef Core library.
EFCore.SoftDelete and SoftDelete are both based on this repository, both will get updates and will be maintained
Extend your application db context from SoftDeletes.Core.DbContext
.
In entities you want to add soft delete support, implement SoftDeletes.ModelTools.ISoftDelete
interface.
It will a column named DeletedAt
to your entity so you need to add a migration and update the database tables.
Load relations you want to delete in soft deleting the entity in LoadRelationsAsync
and LoadRelations
methods.
Delete relations you want to delete in soft deleting the entity in OnSoftDeleteAsync
and OnSoftDelete
methods.
For soft deleting an entity use Remove
and RemoveAsync
methods. These methods will
soft delete an ISoftDelete
implemented entity and force delete an not implemented entity.
For force deleting any entity use ForceRemove
method.
For restoring soft-deleted entities, you can use Restore
and RestoreAsync
methods.
Note that this methods will no longer call SaveChanges
method. For better performance, you should manually call SaveChanges
method.
It doesn't support DbSet
yet, so you have to use SoftDeletes.Core.DbContext
methods for removing instead of using DbSet
methods.
An interface for saving CreatedAt
and UpdatedAt
date and time of entities.
You can implement it in your entities. That will add to columns named
CreatedAt
and UpdatedAt
to your entities.
An abstract class that implements ITimestamps
and ISoftDelete
interfaces.
You can use it in your entities.
Sample project for this implementation.
If you like it, you can support me with USDT
:
TJ57yPBVwwK8rjWDxogkGJH1nF3TGPVq98
forUSDT TRC20
0x743379201B80dA1CB680aC08F54b058Ac01346F1
forUSDT ERC20
The proposal for this implementation.