EfCore.SoftDeleteServices 2.0.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package EfCore.SoftDeleteServices --version 2.0.1
NuGet\Install-Package EfCore.SoftDeleteServices -Version 2.0.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="EfCore.SoftDeleteServices" Version="2.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add EfCore.SoftDeleteServices --version 2.0.1
#r "nuget: EfCore.SoftDeleteServices, 2.0.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install EfCore.SoftDeleteServices as a Cake Addin
#addin nuget:?package=EfCore.SoftDeleteServices&version=2.0.1

// Install EfCore.SoftDeleteServices as a Cake Tool
#tool nuget:?package=EfCore.SoftDeleteServices&version=2.0.1

EfCore.SoftDeleteServices

This library to provide simple soft delete and cascade soft delete in EF Core. It provides:

  • Useful methods: The features in this library are:
    • Set the SoftDeleted flag on an entity class, with checks.
    • Provides a secure query to find all the Soft Deleted entities for a specific entity class.
    • Reset the SoftDeleted flag on an entity class, which checks.
    • Hard delete (i.e. call EF Core Remove method) a entity class, but only if it is already Soft Deleted.
  • Cascade Soft Delete: This library has a service that can mimic the database cascade delete, but Soft Deleting the entities. For instance, Cascade Soft Deleting a Company could also soft delete dependent relationships (see image below).
  • Keeps your data secure: This library can handle Query Filters that contain multiple parts to the filter, e.g. Soft Delete with a multi-tenant filter. It builds queries that will replace the other filters so that your data stays secure.

MIT License. Documentation can be found in the Repo's Wiki.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on EfCore.SoftDeleteServices:

Package Downloads
Xswift.EntityFrameworkCore

Provides Implementations of the datasource abstraction that belongs to the XSwift frameworks. the implementations are based on the Entity framework core.

Homox

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
8.0.0 160 4/10/2024
4.0.0 1,313 11/22/2023
3.1.0 16,782 12/7/2022
2.0.2 8,856 6/18/2022
2.0.1 16,425 3/4/2022
2.0.0 3,336 11/10/2021
2.0.0-preview001 169 11/2/2021
1.1.3 1,964 3/13/2021
1.1.2 995 1/25/2021
1.1.1 791 1/22/2021
1.1.0 790 1/12/2021
1.0.0 1,838 1/9/2021
1.0.0-preview004 641 1/8/2021
1.0.0-preview003 639 1/8/2021
1.0.0-preview002 655 1/8/2021
1.0.0-preview001 668 1/8/2021

Bug fix: Cascade delete would fail to soft delete a relationship in certain circumstances - see issue #11