I need to take some text fields and insert that data into a SQLite DB using LINQ to SQL. This is what I have so far: var ordersDB = new SQLite.SQLiteConnection(orderPath); Orders ord = new Orders(); ord.custNum = tblCustomerNumber.Text; ord.itemNum = tbxEnterItem.Text; ord.itemQty = tbxQty.Text;
