How can I use dapper to connect and get data from a sqlite database?
There is nothing magical you need to do. Just add:
using Dapper;
And run queries on your open SqliteConnection
SqliteConnection
cnn.Query("select 'hello world' from Table")