EfCore.SoftDeleteServices 1.0.0-preview002

This is a prerelease version of EfCore.SoftDeleteServices.
There is a newer version of this package available.
See the version list below for details.
dotnet add package EfCore.SoftDeleteServices --version 1.0.0-preview002
NuGet\Install-Package EfCore.SoftDeleteServices -Version 1.0.0-preview002
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="1.0.0-preview002" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add EfCore.SoftDeleteServices --version 1.0.0-preview002
#r "nuget: EfCore.SoftDeleteServices, 1.0.0-preview002"
#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=1.0.0-preview002&prerelease

// Install EfCore.SoftDeleteServices as a Cake Tool
#tool nuget:?package=EfCore.SoftDeleteServices&version=1.0.0-preview002&prerelease

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
    • Provides a query to find all the Soft Deleted entities in the database
    • Reset the SoftDeleted flag on an entity class
    • Hard delete (i.e. call EF Core Remove method) a entity class, but only if it is already Soft Deleted.
      NOTE: Methods can work with entity instance, or found via primary keys. Also has sync and async versions of all methods.
  • 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.
  • 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.
  • Fully configurable: It works with your properties and interfaces. The only rule it has is your Soft Delete property must be of type bool, or for the cascade delete it must be of type byte.
  • DI-friendly: This library is designed to work with dependency injection (DI) and contains a method which will scan for your Soft Delete configuration files and set up all the services you need to use this library.
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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 213 4/10/2024
4.0.0 1,343 11/22/2023
3.1.0 16,788 12/7/2022
2.0.2 8,882 6/18/2022
2.0.1 16,489 3/4/2022
2.0.0 3,337 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,842 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

First release.