我的 WPF 列表框中有以下项目 A(字符串)和项目 B(十进制)。我打算
将它们保存到具有相应数据类型的 MS SQL 数据库中的表中。
DataClasses1DataContext dc = new DataClasses1DataContext();
foreach (var items in MyListBox.Items)
{
//I was thinking in this terms but I doubt if its the correct code
items=MyListBox.Items.Cast<String>().ToList();
//
//Then use this Linq Statement to insert the data
Student std = new Student();
std.Name=items
std.Marks=items
dc.Student.InsertOnSubmit(std);
dc.SubmitChanges();
}
需要任何澄清请询问,我仍然是 C#、wpf、Linq 的精益者