Akka.Persistence.Sql
1.5.2-beta1
Prefix Reserved
See the version list below for details.
dotnet add package Akka.Persistence.Sql --version 1.5.2-beta1
NuGet\Install-Package Akka.Persistence.Sql -Version 1.5.2-beta1
<PackageReference Include="Akka.Persistence.Sql" Version="1.5.2-beta1" />
paket add Akka.Persistence.Sql --version 1.5.2-beta1
#r "nuget: Akka.Persistence.Sql, 1.5.2-beta1"
// Install Akka.Persistence.Sql as a Cake Addin #addin nuget:?package=Akka.Persistence.Sql&version=1.5.2-beta1&prerelease // Install Akka.Persistence.Sql as a Cake Tool #tool nuget:?package=Akka.Persistence.Sql&version=1.5.2-beta1&prerelease
An Akka Persistence Module for SQL Databases using Linq2Db.
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
- Akka.Persistence.Query (>= 1.5.2)
- Akka.Streams (>= 1.5.2)
- LanguageExt.Core (>= 4.4.2)
- linq2db (>= 5.1.1)
- Microsoft.Bcl.HashCode (>= 1.1.1)
- System.Linq.Async (>= 6.0.1)
- System.Reactive.Linq (>= 5.0.0)
NuGet packages (3)
Showing the top 3 NuGet packages that depend on Akka.Persistence.Sql:
Package | Downloads |
---|---|
Akka.Persistence.Sql.Hosting
Package Description |
|
FCQRS
Package Description |
|
Akka.Persistence.Sql.HelperLib
Package Description |
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on Akka.Persistence.Sql:
Repository | Stars |
---|---|
Aaronontheweb/InMemoryCQRSReplication
Akka.NET Reference Architecture - CQRS + Sharding + In-Memory Replication
|
Version | Downloads | Last updated |
---|---|---|
1.5.30 | 3,869 | 10/4/2024 |
1.5.28 | 1,462 | 9/9/2024 |
1.5.27.1 | 5,611 | 8/1/2024 |
1.5.27 | 106 | 7/30/2024 |
1.5.26 | 561 | 7/9/2024 |
1.5.25 | 2,058 | 6/17/2024 |
1.5.24 | 477 | 6/13/2024 |
1.5.20 | 1,644 | 5/10/2024 |
1.5.13 | 15,313 | 9/27/2023 |
1.5.12 | 2,204 | 8/8/2023 |
1.5.12-beta1 | 272 | 8/4/2023 |
1.5.9-beta1 | 190 | 7/20/2023 |
1.5.4-beta1 | 1,730 | 4/26/2023 |
1.5.2-beta3 | 1,237 | 4/19/2023 |
1.5.2-beta2 | 275 | 4/14/2023 |
1.5.2-beta1 | 214 | 4/11/2023 |
> **NOTE: This beta release is intended for greenfield projects only.**
>
> Until backward compatibility is properly tested and documented, it is recommended to use this plugin only on new greenfield projects that does not rely on existing persisted data.
Akka.Persistence.Sql is a successor of Akka.Persistence.Linq2Db. It is being retooled to provide a better inter-compatibility with other SQL based Akka.Persistence plugin family.
Currently supported database family:
Microsoft SQL Server
MS SQLite
System.Data.SQLite
PostgreSQL using binary payload
Akka.Hosting Extension Setup**
Assuming a MS SQL Server 2019 setup:
```csharp
var host = new HostBuilder()
.ConfigureServices((context, services) => {
services.AddAkka("my-system-name", (builder, provider) =>
{
builder.WithSqlPersistence(
connectionString: _myConnectionString,
providerName: ProviderName.SqlServer2019)
});
})
```
ProviderName is a string constant defining the database type to connect to, valid values are defined inside `LinqToDB.ProviderName` static class. Refer to the Members of [`LinqToDb.ProviderName`](https://linq2db.github.io/api/LinqToDB.ProviderName.html) for included providers.
HOCON Configuration Setup**
```hocon
akka.persistence {
journal {
plugin = "akka.persistence.journal.sql"
sql {
connection-string = "{database-connection-string}"
provider-name = "{provider-name}"
}
}
snapshot-store {
plugin = "akka.persistence.snapshot-store.sql"
sql {
connection-string = "{database-connection-string}"
provider-name = "{provider-name}"
}
}
}
```
database-connection-string**: The proper connection string to your database of choice.
provider-name**: A string constant defining the database type to connect to, valid values are defined inside `LinqToDB.ProviderName` static class. Refer to the Members of [`LinqToDb.ProviderName`](https://linq2db.github.io/api/LinqToDB.ProviderName.html) for included providers.