如何检查数据是否添加到 LinqToSql class 中的 table 和日期到 TextBox

How to check if data is added to a table in LinqToSql class and date to TextBox

我有一项作业要使用 LinqToSql class 和 Windows 表单完成。 我需要有关如何检查用户输入的数据是否已成功添加到 table 以及如何向用户写入 success/failure 消息的建议。 我也不知道如何以文本框形式显示日期,如何显示 table 中的日期以及如何将用户输入的日期插入到 table 中。 这是我的代码:

 private void buttonAdd_Click(object sender, EventArgs e)
    {
        northwind1DataContext nwe = new northwind1DataContext();
        Employee emp = new Employee();
        emp.FirstName = textBoxFirst.Text;
        emp.LastName = textBoxLast.Text;
       // emp.BirthDate = textBoxBday.Text; convert to DateTime somehow?
        nwe.Employees.InsertOnSubmit(emp);
        nwe.SubmitChanges();

        //code for checking if changes are made

        buttonDel.Enabled = false;
        buttonUp.Enabled = false;
        buttonRight.Enabled = false;
        buttonLeft.Enabled = false;


        ClearTextBox(textBoxFirst, textBoxLast, textBoxBday);
    }
try 
{      
     nwe.SubmitChanges();
     //print: successfully added to the database
} 
catch {
     //print : failure ... 
}