System.Data.SQLite

About
Login

System.Data.SQLite is an ADO.NET provider for SQLite.

How to use this library

System.Data.SQLite is available on nuget.org. Typical usage would involve adding two packages, one for System.Data.SQLite, and one containing a native built of SQLite. For example:

    <ItemGroup>
        <PackageReference id="System.Data.SQLite" version="2.0.1"/>
        <PackageReference id="SourceGear.sqlite3" version="3.50.4.1"/>
    </ItemGroup>

More Info