Unleasharp.DB.SQLite
1.6.0
dotnet add package Unleasharp.DB.SQLite --version 1.6.0
NuGet\Install-Package Unleasharp.DB.SQLite -Version 1.6.0
<PackageReference Include="Unleasharp.DB.SQLite" Version="1.6.0" />
<PackageVersion Include="Unleasharp.DB.SQLite" Version="1.6.0" />
<PackageReference Include="Unleasharp.DB.SQLite" />
paket add Unleasharp.DB.SQLite --version 1.6.0
#r "nuget: Unleasharp.DB.SQLite, 1.6.0"
#:package Unleasharp.DB.SQLite@1.6.0
#addin nuget:?package=Unleasharp.DB.SQLite&version=1.6.0
#tool nuget:?package=Unleasharp.DB.SQLite&version=1.6.0
💾 Unleasharp.DB.SQLite
SQLite implementation of Unleasharp.DB.Base. This repository provides a SQLite-specific implementation that leverages the base abstraction layer for common database operations.
📦 Installation
Install the NuGet package using one of the following methods:
Package Manager Console
Install-Package Unleasharp.DB.SQLite
.NET CLI
dotnet add package Unleasharp.DB.SQLite
PackageReference (Manual)
<PackageReference Include="Unleasharp.DB.SQLite" Version="1.6.0" />
🎯 Features
- SQLite-Specific Query Rendering: Custom query building and rendering tailored for SQLite
- Connection Management: Robust connection handling through ConnectorManager
- Query Builder Integration: Seamless integration with the base QueryBuilder
- Schema Definition Support: Full support for table and column attributes
🚀 Kickstart
var db = new ConnectorManager("Data Source=unleasharp.db;Version=3;")
var row = db.QueryBuilder().Build(query => query
.From<ExampleTable>()
.OrderBy<ExampleTable>(row => row.Id, OrderDirection.DESC)
.Limit(1)
.Select()
).FirstOrDefault<ExampleTable>();
📖 Documentation Resources
- 📚 GitHub Wiki - Complete documentation
- 🎯 Getting Started Guide - Quick start guide
📦 Dependencies
- Unleasharp.DB.Base - Base abstraction layer
- System.Data.SQLite.Core - SQLite driver for .NET
📋 Version Compatibility
This library targets .NET 6.0 and later versions. For specific version requirements, please check the package dependencies.
📄 License
This project is licensed under the MIT License - see the LICENSE file for details.
For more information about Unleasharp.DB.Base, visit: Unleasharp.DB.Base
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. 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 is compatible. 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. |
-
net6.0
- System.Data.SQLite.Core (>= 1.0.119)
- Unleasharp.DB.Base (>= 1.6.0)
-
net8.0
- System.Data.SQLite.Core (>= 1.0.119)
- Unleasharp.DB.Base (>= 1.6.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.