Quando criei o método abaixo, tenho o erro no SQLiteConnection(path).
Ele diz que o método não possui um construtor com apenas 1 argumento.
public SQLiteConnection GetConnection()
{
var fileName = "Refeicao.db3";
var documents = Environment.GetFolderPath(Environment.SpecialFolder.Personal);
var path = Path.Combine(documents, "..", "Library", fileName);
return new SQLiteConnection(path); ;
}