Tacta.EventStore
1.8.0
See the version list below for details.
dotnet add package Tacta.EventStore --version 1.8.0
NuGet\Install-Package Tacta.EventStore -Version 1.8.0
<PackageReference Include="Tacta.EventStore" Version="1.8.0" />
<PackageVersion Include="Tacta.EventStore" Version="1.8.0" />
<PackageReference Include="Tacta.EventStore" />
paket add Tacta.EventStore --version 1.8.0
#r "nuget: Tacta.EventStore, 1.8.0"
#addin nuget:?package=Tacta.EventStore&version=1.8.0
#tool nuget:?package=Tacta.EventStore&version=1.8.0
Nuget package for handling domain, event store and projections
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. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.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
- Dapper (>= 2.0.143)
- Microsoft.CSharp (>= 4.7.0)
- Microsoft.Data.SqlClient (>= 5.1.4)
- Newtonsoft.Json (>= 13.0.3)
- Polly (>= 7.2.4)
- System.Data.SqlClient (>= 4.8.5)
- Tacta.Connection (>= 1.0.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.8.1-rc | 118 | 6/13/2025 |
1.8.0 | 183 | 6/11/2025 |
1.7.8-rc | 179 | 6/11/2025 |
1.7.7-rc | 184 | 6/10/2025 |
1.7.6-rc | 191 | 6/10/2025 |
1.7.5-rc | 204 | 6/9/2025 |
1.7.4-rc | 125 | 6/5/2025 |
1.7.3-rc | 124 | 6/4/2025 |
1.6.7 | 124 | 12/24/2024 |
1.6.4 | 165 | 5/29/2024 |
1.6.3 | 162 | 4/11/2024 |
1.6.2 | 298 | 2/2/2024 |
1.6.1 | 251 | 2/1/2024 |
1.6.0 | 276 | 1/16/2024 |
1.5.3 | 268 | 2/1/2024 |
1.5.1 | 318 | 12/28/2023 |
1.5.0 | 284 | 12/28/2023 |
1.4.0 | 299 | 12/15/2023 |
1.3.9 | 608 | 6/27/2023 |
1.3.8 | 592 | 5/9/2023 |
1.3.7 | 618 | 4/27/2023 |
1.3.6 | 834 | 4/14/2023 |
1.3.5 | 755 | 1/11/2023 |
1.3.4 | 683 | 12/21/2022 |
1.3.3 | 688 | 12/15/2022 |
1.3.2 | 712 | 12/14/2022 |
1.3.1 | 956 | 10/5/2022 |
1.3.0 | 864 | 5/17/2022 |
1.2.0 | 899 | 5/10/2022 |
1.1.0 | 728 | 11/22/2021 |
1.0.0 | 735 | 10/21/2021 |
New Features:
• Audit Logging:
Introduced audit logging for projections. Each time a projection is applied, an entry is recorded in the ProjectionsAuditLog table, capturing the event sequence and the timestamp when the projection was applied. This provides traceability and helps ensure the integrity of the projection process.
• Projections Gap Detection:
Added a process to detect gaps in projections. The AuditRepository can now identify events in the EventStore that have not yet been applied to projections by checking for missing entries in the ProjectionsAuditLog. This feature helps ensure that all events are properly projected and makes it easier to identify and address any missed events.
Breaking Changes:
• Process Method Return Type:
The Process method now returns a ProcessData object containing both the number of processed events and the current pivot sequence, instead of a simple integer. Update any code that consumes this method to handle the new return type.