I am using Microsoft Data SQLite NuGet package inside UWP App,
I have 300 record in Exele sheet after creating UWP app package I want to send these 300 record to my SQLite database,how can I do that I even not know where is the database file and how to open it and how do I send these record
You can refer to this official document Use a SQLite database in a UWP app.
There is a small bug in the docs, You need to install Microsoft.Data.SQLite instead of Microsoft.Data.SQLite.Core.
Create a SQLite database in LocalFolder with
ApplicationData.Current.LocalFolder, the .db file will be created in your local folder: C:\Users\YourUserName\AppData\Local\Packages\9be...(Your App Package FamilyName)\LocalState\sqliteSample.dbYou can get the database through Path, and add your excel data with
SqliteCommand.