Microsoft.Data.Sqlite 10.0.7

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.

Showing the top 20 packages that depend on Microsoft.Data.Sqlite.

Packages 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.
20
FluentMigrator.Runner.SQLite
FluentMigrator is a database migration framework for .NET written in C#. The basic idea is that you can create migrations which are simply classes that derive from the Migration base class and have a Migration attribute with a unique version number attached to them. Upon executing FluentMigrator, you tell it which version to migrate to and it will run all necessary migrations in order to bring your database up to that version. In addition to forward migration support, FluentMigrator also supports different ways to execute the migrations along with selective migrations called profiles and executing arbitrary SQL.
18
FluentMigrator
FluentMigrator is a database migration framework for .NET written in C#. The basic idea is that you can create migrations which are simply classes that derive from the Migration base class and have a Migration attribute with a unique version number attached to them. Upon executing FluentMigrator, you tell it which version to migrate to and it will run all necessary migrations in order to bring your database up to that version. In addition to forward migration support, FluentMigrator also supports different ways to execute the migrations along with selective migrations called profiles and executing arbitrary SQL.
17
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.
16
Microsoft.EntityFrameworkCore.Sqlite
SQLite database provider for Entity Framework Core.
16
Microsoft.EntityFrameworkCore.Sqlite
SQLite database provider for Entity Framework Core.
15
Microsoft.AspNetCore.All
Microsoft.AspNetCore.All
15
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.
15
Microsoft.AspNetCore.All
Microsoft.AspNetCore.All
14
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.
14
FluentMigrator.Abstractions
FluentMigrator is a database migration framework for .NET written in C#. The basic idea is that you can create migrations which are simply classes that derive from the Migration base class and have a Migration attribute with a unique version number attached to them. Upon executing FluentMigrator, you tell it which version to migrate to and it will run all necessary migrations in order to bring your database up to that version. In addition to forward migration support, FluentMigrator also supports different ways to execute the migrations along with selective migrations called profiles and executing arbitrary SQL.
14
FluentMigrator.Runner.Core
FluentMigrator is a database migration framework for .NET written in C#. The basic idea is that you can create migrations which are simply classes that derive from the Migration base class and have a Migration attribute with a unique version number attached to them. Upon executing FluentMigrator, you tell it which version to migrate to and it will run all necessary migrations in order to bring your database up to that version. In addition to forward migration support, FluentMigrator also supports different ways to execute the migrations along with selective migrations called profiles and executing arbitrary SQL.
14

.NET Standard 2.0

Version Downloads Last updated
11.0.0-preview.3.26207.106 7 04/16/2026
11.0.0-preview.2.26159.112 14 03/12/2026
11.0.0-preview.1.26104.118 13 02/12/2026
10.0.7 6 04/23/2026
10.0.6 8 04/16/2026
10.0.5 106 03/14/2026
10.0.4 13 03/12/2026
10.0.3 14 02/12/2026
10.0.2 22 01/14/2026
10.0.1 23 12/11/2025
10.0.0 18 12/18/2025
10.0.0-rc.2.25502.107 15 12/17/2025
10.0.0-rc.1.25451.107 13 12/12/2025
10.0.0-preview.7.25380.108 16 12/16/2025
10.0.0-preview.6.25358.103 19 12/19/2025
10.0.0-preview.5.25277.114 13 12/11/2025
10.0.0-preview.4.25258.110 11 12/15/2025
10.0.0-preview.3.25171.6 13 12/20/2025
10.0.0-preview.2.25163.8 11 12/13/2025
10.0.0-preview.1.25081.1 12 12/20/2025
9.0.15 6 04/16/2026
9.0.14 13 03/12/2026
9.0.13 12 02/12/2026
9.0.12 22 01/14/2026
9.0.11 14 12/14/2025
9.0.10 17 12/17/2025
9.0.9 22 12/10/2025
9.0.8 14 12/28/2025
9.0.7 12 12/11/2025
9.0.6 13 12/13/2025
9.0.5 16 12/21/2025
9.0.4 14 12/18/2025
9.0.3 11 12/13/2025
9.0.2 958 12/10/2025
9.0.1 11 01/05/2026
9.0.0 12 12/14/2025
9.0.0-rc.2.24474.1 11 12/14/2025
9.0.0-rc.1.24451.1 14 12/12/2025
9.0.0-preview.7.24405.3 12 12/17/2025
9.0.0-preview.6.24327.4 14 12/17/2025
9.0.0-preview.5.24306.3 17 12/20/2025
9.0.0-preview.4.24267.1 12 12/20/2025
9.0.0-preview.3.24172.4 11 01/05/2026
9.0.0-preview.2.24128.4 16 12/10/2025
9.0.0-preview.1.24081.2 13 12/10/2025
8.0.26 6 04/16/2026
8.0.25 11 03/12/2026
8.0.24 12 02/12/2026
8.0.23 20 01/14/2026
8.0.22 12 12/20/2025
8.0.21 26 12/17/2025
8.0.20 13 12/14/2025
8.0.19 17 12/10/2025
8.0.18 14 12/10/2025
8.0.17 14 12/13/2025
8.0.16 13 12/23/2025
8.0.15 12 12/13/2025
8.0.14 13 12/19/2025
8.0.13 14 12/17/2025
8.0.12 14 12/26/2025
8.0.11 14 01/05/2026
8.0.10 12 12/30/2025
8.0.8 14 12/20/2025
8.0.7 12 01/05/2026
8.0.6 1,086 12/10/2025
8.0.5 11 12/14/2025
8.0.4 1,089 12/10/2025
8.0.3 14 12/15/2025
8.0.2 1,117 12/10/2025
8.0.1 13 12/17/2025
8.0.0 9 12/29/2025
8.0.0-rc.2.23480.1 11 12/14/2025
8.0.0-rc.1.23419.6 24 12/11/2025
8.0.0-preview.7.23375.4 12 12/14/2025
8.0.0-preview.6.23329.4 18 12/20/2025
8.0.0-preview.5.23280.1 11 12/13/2025
8.0.0-preview.4.23259.3 11 12/14/2025
8.0.0-preview.3.23174.2 14 12/20/2025
8.0.0-preview.2.23128.3 10 12/20/2025
8.0.0-preview.1.23111.4 13 12/20/2025
7.0.20 16 01/02/2026
7.0.19 16 12/23/2025
7.0.18 15 12/13/2025
7.0.17 13 12/10/2025
7.0.16 11 01/04/2026
7.0.15 10 12/20/2025
7.0.14 13 12/26/2025
7.0.13 16 01/06/2026
7.0.12 16 12/17/2025
7.0.11 15 12/14/2025
7.0.10 15 01/06/2026
7.0.9 10 12/15/2025
7.0.8 14 01/05/2026
7.0.7 13 12/13/2025
7.0.5 10 01/05/2026
7.0.4 17 12/22/2025
7.0.3 13 12/11/2025
7.0.2 15 12/11/2025
7.0.1 12 12/31/2025
7.0.0 11 01/04/2026
7.0.0-rc.2.22472.11 12 12/20/2025
7.0.0-rc.1.22426.7 17 12/13/2025
7.0.0-preview.7.22376.2 15 12/11/2025
7.0.0-preview.6.22329.4 13 12/11/2025
7.0.0-preview.5.22302.2 10 12/16/2025
7.0.0-preview.4.22229.2 12 12/20/2025
7.0.0-preview.3.22175.1 11 12/15/2025
7.0.0-preview.2.22153.1 12 12/10/2025
7.0.0-preview.1.22076.6 15 12/20/2025
6.0.36 10 12/10/2025
6.0.35 10 12/28/2025
6.0.33 13 01/05/2026
6.0.32 11 01/05/2026
6.0.31 16 12/13/2025
6.0.30 13 01/05/2026
6.0.29 15 12/11/2025
6.0.28 11 01/05/2026
6.0.27 15 12/22/2025
6.0.26 10 01/05/2026
6.0.25 17 12/31/2025
6.0.24 10 12/19/2025
6.0.23 13 01/05/2026
6.0.22 10 12/10/2025
6.0.21 14 12/14/2025
6.0.20 11 01/03/2026
6.0.19 12 01/05/2026
6.0.18 31 12/11/2025
6.0.16 15 12/16/2025
6.0.15 14 12/14/2025
6.0.14 13 01/02/2026
6.0.13 13 12/14/2025
6.0.12 17 12/17/2025
6.0.11 9 01/05/2026
6.0.10 15 12/14/2025
6.0.9 12 01/05/2026
6.0.8 13 12/20/2025
6.0.7 13 12/26/2025
6.0.6 11 12/29/2025
6.0.5 12 01/05/2026
6.0.4 14 01/05/2026
6.0.3 10 12/17/2025
6.0.2 8 12/21/2025
6.0.1 17 12/13/2025
6.0.0 13 12/13/2025
6.0.0-rc.2.21480.5 13 12/20/2025
6.0.0-rc.1.21452.10 12 12/14/2025
6.0.0-preview.7.21378.4 15 12/14/2025
6.0.0-preview.6.21352.1 12 12/14/2025
6.0.0-preview.5.21301.9 13 12/20/2025
6.0.0-preview.4.21253.1 14 12/14/2025
6.0.0-preview.3.21201.2 13 12/20/2025
6.0.0-preview.2.21154.2 13 12/10/2025
6.0.0-preview.1.21102.2 13 12/16/2025
5.0.17 12 12/28/2025
5.0.16 15 12/21/2025
5.0.15 14 12/13/2025
5.0.14 20 12/14/2025
5.0.13 11 12/30/2025
5.0.12 12 12/24/2025
5.0.11 13 12/14/2025
5.0.10 11 12/24/2025
5.0.9 11 12/14/2025
5.0.8 12 12/12/2025
5.0.7 9 01/05/2026
5.0.6 16 12/15/2025
5.0.5 14 12/27/2025
5.0.4 17 12/26/2025
5.0.3 14 01/04/2026
5.0.2 15 12/25/2025
5.0.1 11 01/07/2026
5.0.0 11 12/14/2025
5.0.0-rc.2.20475.6 10 12/20/2025
5.0.0-rc.1.20451.13 9 12/20/2025
5.0.0-preview.8.20407.4 20 12/11/2025
5.0.0-preview.7.20365.15 14 12/17/2025
5.0.0-preview.6.20312.4 13 12/10/2025
5.0.0-preview.5.20278.2 16 12/10/2025
5.0.0-preview.4.20220.10 10 12/19/2025
5.0.0-preview.3.20181.2 14 12/10/2025
5.0.0-preview.2.20159.4 17 12/20/2025
5.0.0-preview.2.20120.8 11 12/20/2025
3.1.32 19 12/24/2025
3.1.31 15 12/25/2025
3.1.30 13 12/14/2025
3.1.29 12 01/04/2026
3.1.28 42 12/16/2025
3.1.27 15 12/13/2025
3.1.26 15 12/10/2025
3.1.25 15 01/01/2026
3.1.24 15 12/14/2025
3.1.23 13 12/23/2025
3.1.22 13 12/09/2025
3.1.21 15 12/29/2025
3.1.20 12 12/27/2025
3.1.19 12 12/16/2025
3.1.18 16 12/28/2025
3.1.17 12 12/14/2025
3.1.16 14 12/10/2025
3.1.15 11 12/19/2025
3.1.14 14 12/29/2025
3.1.13 11 12/26/2025
3.1.12 13 01/07/2026
3.1.11 13 12/18/2025
3.1.10 13 12/14/2025
3.1.9 10 01/07/2026
3.1.8 11 12/15/2025
3.1.7 11 12/15/2025
3.1.6 11 12/28/2025
3.1.5 13 12/15/2025
3.1.4 15 12/14/2025
3.1.3 13 12/09/2025
3.1.2 15 12/28/2025
3.1.1 9 01/07/2026
3.1.0 12 01/04/2026
3.1.0-preview3.19554.8 14 12/10/2025
3.1.0-preview2.19525.5 12 12/20/2025
3.1.0-preview1.19506.2 11 12/20/2025
3.0.3 12 12/18/2025
3.0.2 12 12/21/2025
3.0.1 14 12/22/2025
3.0.0 11 12/15/2025
3.0.0-rc1.19456.14 13 12/20/2025
3.0.0-preview9.19423.6 10 12/20/2025
3.0.0-preview8.19405.11 10 12/20/2025
3.0.0-preview7.19362.6 13 12/16/2025
3.0.0-preview6.19304.10 10 12/20/2025
3.0.0-preview5.19227.1 15 12/20/2025
3.0.0-preview4.19216.3 11 12/20/2025
3.0.0-preview3.19153.1 13 12/20/2025
3.0.0-preview.19074.3 9 12/21/2025
3.0.0-preview.18572.1 13 12/21/2025
2.3.0 16 12/17/2025
2.2.6 14 12/30/2025
2.2.4 13 12/21/2025
2.2.3 10 12/16/2025
2.2.2 10 01/07/2026
2.2.1 15 12/13/2025
2.2.0 12 12/20/2025
2.2.0-preview3-35497 13 12/20/2025
2.2.0-preview2-35157 11 12/27/2025
2.2.0-preview1-35029 12 12/20/2025
2.1.14 15 12/21/2025
2.1.11 13 01/07/2026
2.1.8 15 12/23/2025
2.1.0 12 01/07/2026
2.1.0-rc1-final 14 12/20/2025
2.1.0-preview2-final 17 12/20/2025
2.1.0-preview1-final 12 12/20/2025
2.0.1 14 12/13/2025
2.0.0 11 12/29/2025
2.0.0-preview2-final 12 12/20/2025
2.0.0-preview1-final 11 12/20/2025
1.1.1 12 01/07/2026
1.1.0 13 01/01/2026
1.1.0-preview1-final 13 12/20/2025
1.0.1 14 12/11/2025
1.0.0 14 12/15/2025
1.0.0-rc2-final 16 12/14/2025
1.0.0-rc1-final 15 12/20/2025
1.0.0-beta8 13 12/20/2025
1.0.0-beta7 17 12/17/2025
1.0.0-beta6 17 12/13/2025
1.0.0-beta1 17 12/20/2025