我的代码在将数据保存到数据库时遇到问题。我有一个文本框和一个组合框,但是当我在文本框中键入数据并在组合框中选择数据并单击保存时,没有任何反应,并且在编译过程中没有发现错误。我可以知道实际出了什么问题并给我一些解决方案吗?
enter code here private void btnCreate_Click(object sender, EventArgs e)
{
using (testEntities Setupctx = new testEntities())
{
string selectST = cbSeats.SelectedItem.ToString();
string inputST = txtStation.Text;
var createStation = (from createST in Setupctx.stations
where createST.Seats == selectST
where createST.Station1 == inputST
select createST).SingleOrDefault();
if (createStation != null)
{
Setupctx.stations.AddObject(createStation);
Setupctx.SaveChanges();
txtStation.Text = "";
MessageBox.Show("New Station Has Been Created.");
}
}
}
对你的帮助表示感谢。