Microsoft.Data.Sqlite 11.0.0-preview.3.26207.106

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
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.
135
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.
139
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.
130
FluentMigrator.Runner.SqlServer
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.
146
FluentMigrator.Runner.SqlServerCe
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.
131
Microsoft.AspNetCore.All
Microsoft.AspNetCore.All
124
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.
124
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.
126
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.
127
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.
128
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.
132
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.
133
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. This package was built from the source at: https://github.com/aspnet/Universe/tree/1016eae4004686f7fdad13f5c329f63bbae1f3a1
125
Microsoft.EntityFrameworkCore.Sqlite
SQLite database provider for Entity Framework Core.
124
Microsoft.EntityFrameworkCore.Sqlite
SQLite database provider for Entity Framework Core.
129
Microsoft.EntityFrameworkCore.Sqlite
SQLite database provider for Entity Framework Core.
136
Microsoft.EntityFrameworkCore.Sqlite
SQLite database provider for Entity Framework Core.
144

.NET Standard 2.0

Version Downloads Last updated
11.0.0-preview.3.26207.106 10 04/14/2026
11.0.0-preview.2.26159.112 14 03/11/2026
11.0.0-preview.1.26104.118 19 02/10/2026
10.0.7 3 04/21/2026
10.0.6 5 04/14/2026
10.0.5 13 03/16/2026
10.0.4 13 03/12/2026
10.0.3 20 02/10/2026
10.0.2 22 01/15/2026
10.0.1 27 12/10/2025
10.0.0 50 11/13/2025
10.0.0-rc.2.25502.107 91 10/15/2025
10.0.0-rc.1.25451.107 66 09/09/2025
10.0.0-preview.7.25380.108 73 08/13/2025
10.0.0-preview.6.25358.103 98 07/16/2025
10.0.0-preview.5.25277.114 108 06/07/2025
10.0.0-preview.4.25258.110 95 05/14/2025
10.0.0-preview.3.25171.6 98 04/12/2025
10.0.0-preview.2.25163.8 82 04/01/2025
10.0.0-preview.1.25081.1 111 04/01/2025
9.0.15 6 04/14/2026
9.0.14 13 03/12/2026
9.0.13 15 02/11/2026
9.0.12 19 01/14/2026
9.0.11 57 11/12/2025
9.0.10 71 10/15/2025
9.0.9 85 09/09/2025
9.0.8 98 08/05/2025
9.0.7 103 07/09/2025
9.0.6 99 06/12/2025
9.0.5 88 05/14/2025
9.0.4 113 04/10/2025
9.0.3 118 04/01/2025
9.0.2 90 04/01/2025
9.0.1 93 04/01/2025
9.0.0 96 11/14/2024
9.0.0-rc.2.24474.1 98 10/08/2024
9.0.0-rc.1.24451.1 103 09/19/2024
9.0.0-preview.7.24405.3 97 08/22/2024
9.0.0-preview.6.24327.4 125 07/19/2024
9.0.0-preview.5.24306.3 102 07/19/2024
9.0.0-preview.4.24267.1 115 07/19/2024
9.0.0-preview.3.24172.4 109 07/19/2024
9.0.0-preview.2.24128.4 133 07/19/2024
9.0.0-preview.1.24081.2 117 07/19/2024
8.0.26 4 04/14/2026
8.0.25 12 03/12/2026
8.0.24 18 02/11/2026
8.0.23 24 01/14/2026
8.0.22 52 11/12/2025
8.0.21 58 10/15/2025
8.0.20 73 09/09/2025
8.0.19 83 08/05/2025
8.0.18 99 07/09/2025
8.0.17 81 06/12/2025
8.0.16 84 05/14/2025
8.0.15 93 04/10/2025
8.0.14 97 04/01/2025
8.0.13 92 04/01/2025
8.0.12 101 04/01/2025
8.0.11 86 11/14/2024
8.0.10 100 10/17/2024
8.0.8 95 08/22/2024
8.0.7 112 07/19/2024
8.0.6 114 07/19/2024
8.0.5 142 07/19/2024
8.0.4 118 07/19/2024
8.0.3 107 07/19/2024
8.0.2 118 07/19/2024
8.0.1 121 07/19/2024
8.0.0 124 07/19/2024
8.0.0-rc.2.23480.1 111 07/19/2024
8.0.0-rc.1.23419.6 120 07/19/2024
8.0.0-preview.7.23375.4 101 07/19/2024
8.0.0-preview.6.23329.4 125 07/19/2024
8.0.0-preview.5.23280.1 132 07/19/2024
8.0.0-preview.4.23259.3 131 07/19/2024
8.0.0-preview.3.23174.2 118 07/19/2024
8.0.0-preview.2.23128.3 118 07/19/2024
8.0.0-preview.1.23111.4 97 07/19/2024
7.0.20 124 07/19/2024
7.0.19 110 07/19/2024
7.0.18 129 07/19/2024
7.0.17 124 07/19/2024
7.0.16 111 07/19/2024
7.0.15 125 07/19/2024
7.0.14 130 07/19/2024
7.0.13 116 07/19/2024
7.0.12 142 07/19/2024
7.0.11 119 07/19/2024
7.0.10 131 07/19/2024
7.0.9 116 07/19/2024
7.0.8 123 07/19/2024
7.0.7 110 07/19/2024
7.0.5 133 07/19/2024
7.0.4 104 07/19/2024
7.0.3 113 07/19/2024
7.0.2 109 07/19/2024
7.0.1 128 07/19/2024
7.0.0 109 07/19/2024
7.0.0-rc.2.22472.11 126 07/19/2024
7.0.0-rc.1.22426.7 119 07/19/2024
7.0.0-preview.7.22376.2 114 07/19/2024
7.0.0-preview.6.22329.4 137 07/19/2024
7.0.0-preview.5.22302.2 131 07/19/2024
7.0.0-preview.4.22229.2 129 07/19/2024
7.0.0-preview.3.22175.1 109 07/19/2024
7.0.0-preview.2.22153.1 125 07/19/2024
7.0.0-preview.1.22076.6 135 07/19/2024
6.0.36 96 11/14/2024
6.0.35 109 10/17/2024
6.0.33 114 08/22/2024
6.0.32 135 07/19/2024
6.0.31 134 07/19/2024
6.0.30 113 07/19/2024
6.0.29 102 07/19/2024
6.0.28 115 07/19/2024
6.0.27 141 07/19/2024
6.0.26 114 07/19/2024
6.0.25 131 07/19/2024
6.0.24 117 07/19/2024
6.0.23 116 07/19/2024
6.0.22 137 07/19/2024
6.0.21 160 07/19/2024
6.0.20 123 07/19/2024
6.0.19 139 07/19/2024
6.0.18 120 07/19/2024
6.0.16 132 07/19/2024
6.0.15 115 07/19/2024
6.0.14 113 07/19/2024
6.0.13 124 07/19/2024
6.0.12 146 07/19/2024
6.0.11 120 07/19/2024
6.0.10 119 07/19/2024
6.0.9 138 07/19/2024
6.0.8 117 07/19/2024
6.0.7 115 07/19/2024
6.0.6 129 07/19/2024
6.0.5 126 07/19/2024
6.0.4 119 07/19/2024
6.0.3 104 07/19/2024
6.0.2 127 07/19/2024
6.0.1 120 07/19/2024
6.0.0 161 07/19/2024
6.0.0-rc.2.21480.5 112 07/19/2024
6.0.0-rc.1.21452.10 102 07/19/2024
6.0.0-preview.7.21378.4 119 07/19/2024
6.0.0-preview.6.21352.1 100 07/19/2024
6.0.0-preview.5.21301.9 124 07/19/2024
6.0.0-preview.4.21253.1 114 07/17/2024
6.0.0-preview.3.21201.2 130 07/19/2024
6.0.0-preview.2.21154.2 122 07/19/2024
6.0.0-preview.1.21102.2 127 07/19/2024
5.0.17 129 07/19/2024
5.0.16 123 07/19/2024
5.0.15 126 07/19/2024
5.0.14 119 07/19/2024
5.0.13 110 07/19/2024
5.0.12 133 07/19/2024
5.0.11 118 07/19/2024
5.0.10 111 07/19/2024
5.0.9 151 07/19/2024
5.0.8 130 07/19/2024
5.0.7 141 07/19/2024
5.0.6 113 07/19/2024
5.0.5 126 07/19/2024
5.0.4 109 07/19/2024
5.0.3 125 07/19/2024
5.0.2 131 07/19/2024
5.0.1 127 07/19/2024
5.0.0 131 07/19/2024
5.0.0-rc.2.20475.6 122 07/19/2024
5.0.0-rc.1.20451.13 124 07/19/2024
5.0.0-preview.8.20407.4 105 07/19/2024
5.0.0-preview.7.20365.15 118 07/19/2024
5.0.0-preview.6.20312.4 120 07/19/2024
5.0.0-preview.5.20278.2 123 07/19/2024
5.0.0-preview.4.20220.10 122 07/19/2024
5.0.0-preview.3.20181.2 114 07/19/2024
5.0.0-preview.2.20159.4 103 07/19/2024
5.0.0-preview.2.20120.8 113 07/19/2024
3.1.32 109 07/19/2024
3.1.31 116 07/19/2024
3.1.30 124 07/19/2024
3.1.29 124 07/19/2024
3.1.28 112 07/19/2024
3.1.27 123 07/19/2024
3.1.26 117 07/19/2024
3.1.25 119 07/19/2024
3.1.24 121 07/19/2024
3.1.23 114 07/19/2024
3.1.22 142 07/19/2024
3.1.21 137 07/19/2024
3.1.20 126 07/19/2024
3.1.19 123 07/19/2024
3.1.18 107 07/19/2024
3.1.17 109 07/19/2024
3.1.16 143 07/19/2024
3.1.15 118 07/19/2024
3.1.14 117 07/19/2024
3.1.13 116 07/19/2024
3.1.12 113 07/19/2024
3.1.11 115 07/19/2024
3.1.10 112 07/19/2024
3.1.9 139 07/19/2024
3.1.8 128 07/19/2024
3.1.7 133 07/19/2024
3.1.6 124 07/19/2024
3.1.5 124 07/19/2024
3.1.4 110 07/19/2024
3.1.3 126 07/19/2024
3.1.2 136 07/19/2024
3.1.1 111 07/19/2024
3.1.0 126 07/19/2024
3.1.0-preview3.19554.8 114 07/19/2024
3.1.0-preview2.19525.5 121 07/19/2024
3.1.0-preview1.19506.2 110 07/19/2024
3.0.3 106 07/19/2024
3.0.2 125 07/19/2024
3.0.1 118 07/19/2024
3.0.0 108 07/19/2024
3.0.0-rc1.19456.14 137 07/19/2024
3.0.0-preview9.19423.6 139 07/19/2024
3.0.0-preview8.19405.11 121 07/19/2024
3.0.0-preview7.19362.6 142 07/19/2024
3.0.0-preview6.19304.10 111 07/19/2024
3.0.0-preview5.19227.1 129 07/19/2024
3.0.0-preview4.19216.3 113 07/19/2024
3.0.0-preview3.19153.1 124 07/19/2024
3.0.0-preview.19074.3 104 07/19/2024
3.0.0-preview.18572.1 145 07/19/2024
2.3.0 109 04/01/2025
2.2.6 109 07/19/2024
2.2.4 111 07/19/2024
2.2.3 130 07/19/2024
2.2.2 105 07/19/2024
2.2.1 99 07/19/2024
2.2.0 111 07/19/2024
2.2.0-preview3-35497 115 07/19/2024
2.2.0-preview2-35157 147 07/19/2024
2.2.0-preview1-35029 111 07/19/2024
2.1.14 125 07/19/2024
2.1.11 142 07/19/2024
2.1.8 118 07/19/2024
2.1.0 116 07/19/2024
2.1.0-rc1-final 117 07/19/2024
2.1.0-preview2-final 123 07/19/2024
2.1.0-preview1-final 109 07/19/2024
2.0.1 128 07/19/2024
2.0.0 154 07/19/2024
2.0.0-preview2-final 116 07/19/2024
2.0.0-preview1-final 123 07/19/2024
1.1.1 121 07/19/2024
1.1.0 108 07/19/2024
1.1.0-preview1-final 115 07/19/2024
1.0.1 132 07/19/2024
1.0.0 139 07/19/2024
1.0.0-rc2-final 126 07/19/2024
1.0.0-rc1-final 140 07/19/2024
1.0.0-beta8 126 07/19/2024
1.0.0-beta7 101 07/19/2024
1.0.0-beta6 112 07/19/2024
1.0.0-beta1 137 07/19/2024