Microsoft.Data.Sqlite 10.0.0-preview.1.25081.1

Prefix Reserved
This is a prerelease version of Microsoft.Data.Sqlite.

Requires NuGet 3.6 or higher.

dotnet add package Microsoft.Data.Sqlite --version 10.0.0-preview.1.25081.1                
NuGet\Install-Package Microsoft.Data.Sqlite -Version 10.0.0-preview.1.25081.1                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Microsoft.Data.Sqlite" Version="10.0.0-preview.1.25081.1" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Microsoft.Data.Sqlite --version 10.0.0-preview.1.25081.1                
#r "nuget: Microsoft.Data.Sqlite, 10.0.0-preview.1.25081.1"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Microsoft.Data.Sqlite as a Cake Addin
#addin nuget:?package=Microsoft.Data.Sqlite&version=10.0.0-preview.1.25081.1&prerelease

// Install Microsoft.Data.Sqlite as a Cake Tool
#tool nuget:?package=Microsoft.Data.Sqlite&version=10.0.0-preview.1.25081.1&prerelease                

Microsoft.Data.Sqlite is a lightweight ADO.NET provider for SQLite. The EF Core provider for SQLite is built on top of this library. However, it can also be used independently or with other data access libraries.

Installation

The latest stable version is available on NuGet.

dotnet add package Microsoft.Data.Sqlite

Use the --version option to specify a preview version to install.

Basic usage

This library implements the common ADO.NET abstractions for connections, commands, data readers, and so on. For more information, see Microsoft.Data.Sqlite on Microsoft Docs.

using var connection = new SqliteConnection("Data Source=Blogs.db");
connection.Open();

using var command = connection.CreateCommand();
command.CommandText = "SELECT Url FROM Blogs";

using var reader = command.ExecuteReader();
while (reader.Read())
{
    var url = reader.GetString(0);
}

Getting support

If you have a specific question about using these projects, we encourage you to ask it on Stack Overflow. If you encounter a bug or would like to request a feature, submit an issue. For more details, see getting support.

Product 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. 
.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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (614)

Showing the top 5 NuGet packages that depend on Microsoft.Data.Sqlite:

Package Downloads
Microsoft.AspNetCore.All

Provides a default set of APIs for building an ASP.NET Core application, and also includes API for third-party integrations with ASP.NET Core. This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download.

SqlSugarCore

.Net Core3.1 .Net5 .Net6 .Net7 .Net8 安装此版本,好用的ORM框架 ,支持国外主流和国产人大金仓达梦 OceanBase GaussDB QuestDb ClickHouse Oracle MySql Gbase8s SqlServer Sqlite 等, 使用教程:https://www.donet5.com/Home/Doc?typeId=1226

ThinkGeo.Core

ThinkGeo.Core works with both .NET Core(3.0 and above) and .NET Framework(4.6.2 and above). It provides geometries, data sources, layers, styles, rendering, and low level functions for building GIS applications. It is the basic core dependency package across all of the ThinkGeo 12.0 product line. ** This is an extension for use in ThinkGeo's product line, and cannot be used standalone. See below for more details. ** Docs and Product Guides: https://docs.thinkgeo.com/ API Documentation: https://wiki.thinkgeo.com/wiki/12.0/thinkgeo.core ThinkGeo Cloud APIs: https://cloud.thinkgeo.com This is a commercial product with a free 30-day evaluation. Start your evaluation by signing up at https://helpdesk.thinkgeo.com/register and downloading the ProductCenter application. Supported Platforms: Windows, Linux, macOS - ThinkGeo UI Components based on .NET Core - ThinkGeo UI for Android. ThinkGeo UI for iOS. ThinkGeo UI for Blazor. ThinkGeo UI for WebApi. ThinkGeo UI for WPF.

Umbraco.Cms.Persistence.Sqlite

Adds support for SQLite to Umbraco CMS.

YesSql.Provider.Sqlite

Package Description

GitHub repositories (189)

Showing the top 5 popular GitHub repositories that depend on Microsoft.Data.Sqlite:

Repository Stars
microsoft/PowerToys
Windows system utilities to maximize productivity
jellyfin/jellyfin
The Free Software Media System - Server Backend & API
microsoft/semantic-kernel
Integrate cutting-edge LLM technology quickly and easily into your apps
DapperLib/Dapper
Dapper - a simple object mapper for .Net
abpframework/abp
Open-source web application framework for ASP.NET Core! Offers an opinionated architecture to build enterprise software solutions with best practices on top of the .NET. Provides the fundamental infrastructure, cross-cutting-concern implementations, startup templates, application modules, UI themes, tooling and documentation.
Version Downloads Last updated
10.0.0-preview.1.25081.1 984 2/25/2025
9.0.3 428 3/11/2025
9.0.2 116,722 2/11/2025
9.0.1 179,398 1/14/2025
9.0.0 628,553 11/12/2024
9.0.0-rc.2.24474.1 12,535 10/8/2024
9.0.0-rc.1.24451.1 4,760 9/10/2024
9.0.0-preview.7.24405.3 2,091 8/13/2024
9.0.0-preview.6.24327.4 1,698 7/9/2024
9.0.0-preview.5.24306.3 2,420 6/11/2024
9.0.0-preview.4.24267.1 1,288 5/21/2024
9.0.0-preview.3.24172.4 7,046 4/11/2024
9.0.0-preview.2.24128.4 3,340 3/12/2024
9.0.0-preview.1.24081.2 3,044 2/13/2024
8.0.14 221 3/11/2025
8.0.13 30,678 2/11/2025
8.0.12 48,414 1/14/2025
8.0.11 315,228 11/12/2024
8.0.10 826,694 10/8/2024
8.0.8 976,670 8/13/2024
8.0.7 613,264 7/9/2024
8.0.6 510,575 5/28/2024
8.0.5 190,751 5/14/2024
8.0.4 564,221 4/9/2024
8.0.3 373,385 3/12/2024
8.0.2 476,670 2/13/2024
8.0.1 1,298,868 1/9/2024
8.0.0 1,962,029 11/14/2023
8.0.0-rc.2.23480.1 15,138 10/10/2023
8.0.0-rc.1.23419.6 6,021 9/12/2023
8.0.0-preview.7.23375.4 14,539 8/8/2023
8.0.0-preview.6.23329.4 2,020 7/11/2023
8.0.0-preview.5.23280.1 4,437 6/13/2023
8.0.0-preview.4.23259.3 1,993 5/16/2023
8.0.0-preview.3.23174.2 4,135 4/11/2023
8.0.0-preview.2.23128.3 3,535 3/14/2023
8.0.0-preview.1.23111.4 1,805 2/21/2023
7.0.20 109,659 5/28/2024
7.0.19 13,517 5/14/2024
7.0.18 16,362 4/9/2024
7.0.17 25,710 3/12/2024
7.0.16 15,978 2/13/2024
7.0.15 31,207 1/9/2024
7.0.14 122,251 11/14/2023
7.0.13 271,455 10/24/2023
7.0.12 108,535 10/10/2023
7.0.11 303,201 9/12/2023
7.0.10 323,429 8/8/2023
7.0.9 303,132 7/11/2023
7.0.8 196,785 6/22/2023
7.0.7 346,429 6/13/2023
7.0.5 1,547,099 4/11/2023
7.0.4 349,703 3/14/2023
7.0.3 330,348 2/14/2023
7.0.2 456,561 1/10/2023
7.0.1 394,051 12/13/2022
7.0.0 1,395,927 11/7/2022
7.0.0-rc.2.22472.11 11,408 10/11/2022
7.0.0-rc.1.22426.7 5,527 9/14/2022
7.0.0-preview.7.22376.2 6,293 8/9/2022
7.0.0-preview.6.22329.4 15,716 7/12/2022
7.0.0-preview.5.22302.2 1,726 6/14/2022
7.0.0-preview.4.22229.2 5,983 5/10/2022
7.0.0-preview.3.22175.1 4,818 4/13/2022
7.0.0-preview.2.22153.1 5,993 3/14/2022
7.0.0-preview.1.22076.6 4,614 2/17/2022
6.0.36 17,489 11/12/2024
6.0.35 25,924 10/8/2024
6.0.33 441,035 8/13/2024
6.0.32 30,946 7/9/2024
6.0.31 30,551 5/28/2024
6.0.30 12,569 5/14/2024
6.0.29 3,181 4/9/2024
6.0.28 29,582 3/12/2024
6.0.27 16,655 2/13/2024
6.0.26 66,229 1/9/2024
6.0.25 69,922 11/14/2023
6.0.24 173,962 10/24/2023
6.0.23 14,642 10/10/2023
6.0.22 20,905 9/12/2023
6.0.21 35,873 8/8/2023
6.0.20 41,759 7/11/2023
6.0.19 17,078 6/22/2023
6.0.18 6,011 6/13/2023
6.0.16 117,651 4/11/2023
6.0.15 60,861 3/14/2023
6.0.14 56,512 2/14/2023
6.0.13 87,072 1/10/2023
6.0.12 95,359 12/13/2022
6.0.11 163,463 11/7/2022
6.0.10 359,910 10/11/2022
6.0.9 442,832 9/13/2022
6.0.8 544,020 8/9/2022
6.0.7 383,885 7/12/2022
6.0.6 219,856 6/14/2022
6.0.5 1,317,269 5/10/2022
6.0.4 673,983 4/11/2022
6.0.3 596,941 3/8/2022
6.0.2 500,897 2/8/2022
6.0.1 870,142 12/14/2021
6.0.0 2,025,737 11/8/2021
6.0.0-rc.2.21480.5 16,709 10/12/2021
6.0.0-rc.1.21452.10 4,525 9/14/2021
6.0.0-preview.7.21378.4 5,422 8/10/2021
6.0.0-preview.6.21352.1 4,153 7/14/2021
6.0.0-preview.5.21301.9 1,948 6/15/2021
6.0.0-preview.4.21253.1 2,682 5/24/2021
6.0.0-preview.3.21201.2 4,387 4/8/2021
6.0.0-preview.2.21154.2 7,592 3/11/2021 6.0.0-preview.2.21154.2 is deprecated because it is no longer maintained.
6.0.0-preview.1.21102.2 4,652 2/12/2021 6.0.0-preview.1.21102.2 is deprecated because it is no longer maintained.
5.0.17 541,949 5/10/2022 5.0.17 is deprecated because it is no longer maintained.
5.0.16 72,572 4/11/2022 5.0.16 is deprecated because it is no longer maintained.
5.0.15 42,663 3/8/2022 5.0.15 is deprecated because it is no longer maintained.
5.0.14 23,621 2/8/2022 5.0.14 is deprecated because it is no longer maintained.
5.0.13 93,673 12/14/2021 5.0.13 is deprecated because it is no longer maintained.
5.0.12 156,475 11/7/2021 5.0.12 is deprecated because it is no longer maintained.
5.0.11 246,379 10/12/2021 5.0.11 is deprecated because it is no longer maintained.
5.0.10 201,050 9/14/2021 5.0.10 is deprecated because it is no longer maintained.
5.0.9 295,662 8/10/2021 5.0.9 is deprecated because it is no longer maintained.
5.0.8 264,128 7/13/2021 5.0.8 is deprecated because it is no longer maintained.
5.0.7 509,374 6/8/2021 5.0.7 is deprecated because it is no longer maintained.
5.0.6 275,319 5/11/2021 5.0.6 is deprecated because it is no longer maintained.
5.0.5 2,196,553 4/6/2021 5.0.5 is deprecated because it is no longer maintained.
5.0.4 1,313,263 3/9/2021 5.0.4 is deprecated because it is no longer maintained.
5.0.3 633,149 2/9/2021 5.0.3 is deprecated because it is no longer maintained.
5.0.2 1,150,730 1/12/2021 5.0.2 is deprecated because it is no longer maintained.
5.0.1 277,314 12/8/2020 5.0.1 is deprecated because it is no longer maintained.
5.0.0 276,023 11/9/2020 5.0.0 is deprecated because it is no longer maintained.
5.0.0-rc.2.20475.6 29,988 10/13/2020 5.0.0-rc.2.20475.6 is deprecated because it is no longer maintained.
5.0.0-rc.1.20451.13 15,878 9/14/2020 5.0.0-rc.1.20451.13 is deprecated because it is no longer maintained.
5.0.0-preview.8.20407.4 1,087 8/25/2020 5.0.0-preview.8.20407.4 is deprecated because it is no longer maintained.
5.0.0-preview.7.20365.15 11,739 7/21/2020 5.0.0-preview.7.20365.15 is deprecated because it is no longer maintained.
5.0.0-preview.6.20312.4 3,415 6/25/2020 5.0.0-preview.6.20312.4 is deprecated because it is no longer maintained.
5.0.0-preview.5.20278.2 10,895 6/10/2020 5.0.0-preview.5.20278.2 is deprecated because it is no longer maintained.
5.0.0-preview.4.20220.10 1,332 5/18/2020 5.0.0-preview.4.20220.10 is deprecated because it is no longer maintained.
5.0.0-preview.3.20181.2 2,126 4/23/2020 5.0.0-preview.3.20181.2 is deprecated because it is no longer maintained.
5.0.0-preview.2.20159.4 3,948 4/2/2020 5.0.0-preview.2.20159.4 is deprecated because it is no longer maintained.
5.0.0-preview.2.20120.8 1,226 3/16/2020 5.0.0-preview.2.20120.8 is deprecated because it is no longer maintained.
3.1.32 266,855 12/13/2022
3.1.31 29,745 11/8/2022
3.1.30 34,791 10/11/2022
3.1.29 7,523 9/13/2022
3.1.28 28,214 8/9/2022
3.1.27 26,531 7/12/2022
3.1.26 9,800 6/14/2022
3.1.25 23,703 5/10/2022
3.1.24 12,693 4/11/2022
3.1.23 20,547 3/8/2022
3.1.22 51,347 12/14/2021
3.1.21 155,603 11/7/2021
3.1.20 13,104 10/11/2021
3.1.19 20,516 9/14/2021
3.1.18 10,791 8/10/2021
3.1.17 50,359 7/13/2021
3.1.16 24,058 6/8/2021
3.1.15 78,120 5/11/2021
3.1.14 31,674 4/6/2021
3.1.13 26,278 3/9/2021
3.1.12 59,444 2/9/2021
3.1.11 30,333 1/12/2021
3.1.10 201,394 11/9/2020
3.1.9 343,206 10/13/2020
3.1.8 463,582 9/8/2020
3.1.7 269,458 8/11/2020
3.1.6 230,426 7/14/2020
3.1.5 739,436 6/9/2020
3.1.4 350,301 5/12/2020
3.1.3 651,520 3/24/2020
3.1.2 325,558 2/19/2020
3.1.1 365,409 1/14/2020
3.1.0 410,026 12/3/2019
3.1.0-preview3.19554.8 1,426 11/13/2019 3.1.0-preview3.19554.8 is deprecated because it is no longer maintained.
3.1.0-preview2.19525.5 1,319 11/1/2019 3.1.0-preview2.19525.5 is deprecated because it is no longer maintained.
3.1.0-preview1.19506.2 1,709 10/15/2019 3.1.0-preview1.19506.2 is deprecated because it is no longer maintained.
3.0.3 42,023 2/19/2020
3.0.2 2,155 1/14/2020
3.0.1 152,472 11/18/2019
3.0.0 487,604 9/23/2019
3.0.0-rc1.19456.14 88,104 9/16/2019 3.0.0-rc1.19456.14 is deprecated because it is no longer maintained.
3.0.0-preview9.19423.6 2,330 9/4/2019 3.0.0-preview9.19423.6 is deprecated because it is no longer maintained.
3.0.0-preview8.19405.11 2,638 8/13/2019 3.0.0-preview8.19405.11 is deprecated because it is no longer maintained.
3.0.0-preview7.19362.6 1,195 7/23/2019 3.0.0-preview7.19362.6 is deprecated because it is no longer maintained.
3.0.0-preview6.19304.10 17,943 6/12/2019 3.0.0-preview6.19304.10 is deprecated because it is no longer maintained.
3.0.0-preview5.19227.1 5,541 5/6/2019 3.0.0-preview5.19227.1 is deprecated because it is no longer maintained.
3.0.0-preview4.19216.3 1,369 4/18/2019 3.0.0-preview4.19216.3 is deprecated because it is no longer maintained.
3.0.0-preview3.19153.1 1,308 3/6/2019 3.0.0-preview3.19153.1 is deprecated because it is no longer maintained.
3.0.0-preview.19074.3 2,922 1/29/2019 3.0.0-preview.19074.3 is deprecated because it is no longer maintained.
3.0.0-preview.18572.1 1,615 12/3/2018 3.0.0-preview.18572.1 is deprecated because it is no longer maintained.
2.3.0 7,468 1/14/2025
2.2.6 3,148,299 7/9/2019 2.2.6 is deprecated because it is no longer maintained.
2.2.4 3,379,338 4/9/2019 2.2.4 is deprecated because it is no longer maintained.
2.2.3 660,984 3/11/2019 2.2.3 is deprecated because it is no longer maintained.
2.2.2 522,392 2/12/2019 2.2.2 is deprecated because it is no longer maintained.
2.2.1 1,007,746 1/8/2019 2.2.1 is deprecated because it is no longer maintained.
2.2.0 903,748 12/3/2018 2.2.0 is deprecated because it is no longer maintained.
2.2.0-preview3-35497 4,202 10/17/2018 2.2.0-preview3-35497 is deprecated because it is no longer maintained.
2.2.0-preview2-35157 4,109 9/12/2018 2.2.0-preview2-35157 is deprecated because it is no longer maintained.
2.2.0-preview1-35029 3,675 8/22/2018 2.2.0-preview1-35029 is deprecated because it is no longer maintained.
2.1.14 528,840 11/18/2019
2.1.11 379,418 5/14/2019
2.1.8 339,504 2/12/2019
2.1.0 4,041,461 5/29/2018
2.1.0-rc1-final 11,712 5/6/2018 2.1.0-rc1-final is deprecated because it is no longer maintained.
2.1.0-preview2-final 10,820 4/10/2018 2.1.0-preview2-final is deprecated because it is no longer maintained.
2.1.0-preview1-final 19,091 2/26/2018 2.1.0-preview1-final is deprecated because it is no longer maintained.
2.0.1 6,649,370 3/13/2018 2.0.1 is deprecated because it is no longer maintained.
2.0.0 10,612,485 8/11/2017 2.0.0 is deprecated because it is no longer maintained.
2.0.0-preview2-final 54,190 6/28/2017 2.0.0-preview2-final is deprecated because it is no longer maintained.
2.0.0-preview1-final 23,748 5/10/2017 2.0.0-preview1-final is deprecated because it is no longer maintained.
1.1.1 541,815 5/9/2017 1.1.1 is deprecated because it is no longer maintained.
1.1.0 813,971 11/16/2016 1.1.0 is deprecated because it is no longer maintained.
1.1.0-preview1-final 6,775 10/24/2016 1.1.0-preview1-final is deprecated because it is no longer maintained.
1.0.1 311,398 12/12/2016 1.0.1 is deprecated because it is no longer maintained.
1.0.0 513,882 6/27/2016 1.0.0 is deprecated because it is no longer maintained.
1.0.0-rc2-final 16,295 5/16/2016 1.0.0-rc2-final is deprecated because it is no longer maintained.
1.0.0-rc1-final 74,313 11/18/2015 1.0.0-rc1-final is deprecated because it is no longer maintained.
1.0.0-beta8 19,176 10/15/2015 1.0.0-beta8 is deprecated because it is no longer maintained.
1.0.0-beta7 7,318 9/2/2015 1.0.0-beta7 is deprecated because it is no longer maintained.
1.0.0-beta6 5,474 7/27/2015 1.0.0-beta6 is deprecated because it is no longer maintained.
1.0.0-beta1 4,158 11/11/2014 1.0.0-beta1 is deprecated because it is no longer maintained.