Adding the SQLite-net NuGet package to our solution
In this section, we will begin by adding the SQLite-net NuGet package to our BookLibrary
project—which is essentially a cross-platform library that you can use to create, retrieve, update, or permanently delete (CRUD) information within the SQLite database—by writing a few lines of code to access the various properties and methods available within this class.
Let's start by adding the SQLite-net NuGet package to our BookLibrary
project by going through the following steps:
- Right-click on the
Packages
folder and choose theAdd Packages…
menu option, as shown in the following screenshot:

Adding new NuGet Packages to the BookLibrary project
- Next, within the
Search
field located within theAdd Packages
dialog, enterSQLite-net
and then select thesqlite-net
option within the list, as shown in the following screenshot:

Adding the sqlite-net NuGet Package to the BookLibrary Project
- Then, ensure that you have chosen the latest version to install for...