Hello anonymous user ,
Welcome to Microsoft Q&A!
According to the documentation Use a SQLite database in a UWP app, you just need to install Microsoft.Data.Sqlite
.
The prompt in the error message said Package Microsoft.Data.Sqlite supports netstandard 2.0 ...
Your UWP version is 10.0.10586
which does not meet the environment requirements of these two packages.
You can correct it by following the steps below
- Right-click your project, click
Properties
. - Modify the
Min version
in Targeting toWindows 10 Fall Creators Update(10.0; Build 16299)
. - Rebuild Solution.
- Open
NuGet Package Manager
and InstallMicrosoft.Data.Sqlite
.
Thank you.
Junjie
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.