データベースへのデータの保存に関するコードで問題に直面しています。テキスト ボックスとコンボ ボックスがありますが、テキスト ボックスにデータを入力し、コンボ ボックスでデータを選択して [保存] をクリックしても、コンパイル中に何も起こらず、エラーも検出されませんでした。実際に何が問題だったのかを知り、それに対する解決策を教えてもらえますか?
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.");
}
}
}
どうぞよろしくお願いいたします。