Try the following assuming this is Dapper. I removed the parameter part as you have no parameters in this case.
Note that the caller will have to use await on the method below.
Also, check out the following class for more on Dapper and this article.
public static Task<List<PersonModel>> LoadPeople()
{
using (IDbConnection cnn = new SQLiteConnection(LoadConnectionString()))
{
return (List<PersonModel>)await cnn.QueryAsync<PersonModel>("Select * from Person");
}
}