EfCore.GenericEventRunner.DomainParts
2.1.0-preview004
See the version list below for details.
dotnet add package EfCore.GenericEventRunner.DomainParts --version 2.1.0-preview004
NuGet\Install-Package EfCore.GenericEventRunner.DomainParts -Version 2.1.0-preview004
<PackageReference Include="EfCore.GenericEventRunner.DomainParts" Version="2.1.0-preview004" />
paket add EfCore.GenericEventRunner.DomainParts --version 2.1.0-preview004
#r "nuget: EfCore.GenericEventRunner.DomainParts, 2.1.0-preview004"
// Install EfCore.GenericEventRunner.DomainParts as a Cake Addin #addin nuget:?package=EfCore.GenericEventRunner.DomainParts&version=2.1.0-preview004&prerelease // Install EfCore.GenericEventRunner.DomainParts as a Cake Tool #tool nuget:?package=EfCore.GenericEventRunner.DomainParts&version=2.1.0-preview004&prerelease
Defines basic interfaces/classes for EfCore.GenericEventRunner when using Clean Code architecture.
Product | Versions 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 | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- No dependencies.
NuGet packages (1)
Showing the top 1 NuGet packages that depend on EfCore.GenericEventRunner.DomainParts:
Package | Downloads |
---|---|
EfCore.GenericEventRunner
A library to provide domain event handling to EF Core. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.2.1 | 23,087 | 11/14/2020 |
2.2.0 | 455 | 11/14/2020 |
2.1.0 | 1,527 | 9/14/2020 |
2.1.0-preview005 | 366 | 8/28/2020 |
2.1.0-preview004 | 525 | 8/25/2020 |
2.0.0 | 593 | 8/12/2020 |
- New Feature: Added during event and event handlers. The event is called within a transaction.
- New feature: DuringSaveStage attrbute. Allows you move the during event from running after SaveChanges in the transaction to before the call to SaveChanges, but after DetectChanges has been called.
- New Feature: You can now pick what types of events an entity supports by applying the approriate interfaces: IEntityWithBeforeSaveEvents, IEntityWithDuringSaveEvents, and IEntityWithAfterSaveEvents