最近我安装VS2012并尝试重新制作我的旧WPF项目。在VS2010中,代码工作以及Datagrid中的所有更新或新行通过实体模型保存在DB中。在VS2012中,未在数据库中添加新行。
MyEntities context = new MyEntities();
public MainWindow()
{
InitializeComponent();
}
private void Button_Click_1(object sender, RoutedEventArgs e)
{
var selected = from row in context.Sources
select row;
Datagrid.ItemsSource = selected.ToList();
}
private void Button_Click_2(object sender, RoutedEventArgs e)
{
context.SaveChanges();
}
为什么没有添加新行?