DioRed.Vermilion.ChatStorage.Sqlite
15.0.0
See the version list below for details.
dotnet add package DioRed.Vermilion.ChatStorage.Sqlite --version 15.0.0
NuGet\Install-Package DioRed.Vermilion.ChatStorage.Sqlite -Version 15.0.0
<PackageReference Include="DioRed.Vermilion.ChatStorage.Sqlite" Version="15.0.0" />
<PackageVersion Include="DioRed.Vermilion.ChatStorage.Sqlite" Version="15.0.0" />
<PackageReference Include="DioRed.Vermilion.ChatStorage.Sqlite" />
paket add DioRed.Vermilion.ChatStorage.Sqlite --version 15.0.0
#r "nuget: DioRed.Vermilion.ChatStorage.Sqlite, 15.0.0"
#:package DioRed.Vermilion.ChatStorage.Sqlite@15.0.0
#addin nuget:?package=DioRed.Vermilion.ChatStorage.Sqlite&version=15.0.0
#tool nuget:?package=DioRed.Vermilion.ChatStorage.Sqlite&version=15.0.0
DioRed.Vermilion.ChatStorage.Sqlite
SQLite based chat storage for Vermilion.
The package applies idempotent schema migrations automatically on startup. Upgrading the NuGet package updates the local database schema in place when needed.
Configuration
{
"Vermilion": {
"Sqlite": {
"ConnectionString": "Data Source=vermilion.db",
"TableName": "Chats"
}
}
}
Usage
v.ConfigureChatStorage(s => s.UseSqlite());
If you use the complete DioRed.Vermilion package, you can also write:
v.UseSqliteChatStorage();
Or explicit connection string:
v.ConfigureChatStorage(s => s.UseSqlite("Data Source=vermilion.db", o =>
{
o.TableName = "Chats";
}));
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. 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. |
-
net10.0
- DioRed.Common.ConfigurationExtensions (>= 0.4.0)
- DioRed.Vermilion.Abstractions (>= 15.0.0)
- Microsoft.Data.Sqlite (>= 10.0.5)
- Microsoft.Extensions.Configuration.Abstractions (>= 10.0.5)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.5)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on DioRed.Vermilion.ChatStorage.Sqlite:
| Package | Downloads |
|---|---|
|
DioRed.Vermilion
Complete Vermilion package for quick starts: Core + Hosting + Telegram connector + built-in chat storages (InMemory, JsonFile, SQLite, SQL Server, Azure Table, MongoDB). |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 15.1.0 | 22 | 4/6/2026 |
| 15.0.0 | 32 | 4/5/2026 |
| 15.0.0-preview.8 | 31 | 4/5/2026 |
| 15.0.0-preview.7 | 46 | 3/30/2026 |
| 15.0.0-preview.6 | 44 | 3/29/2026 |
| 15.0.0-preview.3 | 40 | 3/29/2026 |
| 15.0.0-preview.2 | 39 | 3/29/2026 |
| 15.0.0-preview.1 | 86 | 3/28/2026 |
See CHANGELOG.md and MIGRATION.md in the Vermilion repository for release details and upgrade notes.