I created my first ToDo app by adding SQLite component but having problems about viewing saved tasks on the screen. I am not sure about creating database file correctly. Here I attached my cs files. I think i messed up here : `
public class TaskViewModel
{
SQLiteConnection conn ;
public TaskViewModel ()
{
string folder = Environment.GetFolderPath (Environment.SpecialFolder.Personal);
conn = new SQLiteConnection (System.IO.Path.Combine (folder, "tasks.db"));
conn.CreateTable<Task> ();
}`