I use SQLite from windows app and now I am developing in Xamarin a portable app so I am using the plugin sqlite net pcl and I am having great trouble to understand how it works.
Hoping this will be usefull to someone in my place...
Between the brackets (<>) goes the table name:
db.Query("select * from ....");
var list = db.Query("select * from MyTableName");
var list = db.Query("select * from MyTableName where lastname=? and firstname=?", lastnameValue, firstNameValue);