DatabaseEntities de = new DatabaseEntities();
Income income = de.Incomes.CreateObject();
income.Id = de.Incomes.Max(f => f.Id) + 1;
income.Person = Users.SelectedValue.ToString();
income.Value = value;
income.Unit = Unit.SelectedValue.ToString();
income.Description = Desc.Text;
de.Incomes.AddObject(income);
de.SaveChanges();
我已经使用上面的代码部分将Income对象插入到SQL Compact数据库中,之后我使用以下语句将数据绑定到DataGridView:
IncomeGridView.DataSource = de.Incomes;
我看到了新数据,但在我关闭程序后,我没有在表格中看到新数据。任何人都可以解释一下吗?
答案 0 :(得分:2)