ユーザーがデータベースを作成している場合、データベースに同じ Station 名があるかどうかを確認するメソッドを呼び出す方法がわかりませんでした。データベースの列を配列に格納することはできましたが、まだ確認する方法がありません。誰でもそれを手伝ってもらえますか?私はちょっと立ち往生しました。
これは、データベースへのデータの作成を生成するボタン ハンドラーのコードです。
private void btnCreate_Click(object sender, EventArgs e)
{
using (testEntities Setupctx = new testEntities())
{
station creStation = new station();
creStation.Station1 = txtStation.Text;
creStation.Seats = cbSeats.SelectedItem.ToString();
Setupctx.stations.AddObject(creStation);
Setupctx.SaveChanges();
txtStation.Text = "";
cbSeats.SelectedIndex = -1;
MessageBox.Show("New Station Has Been Created.");
}
}
これは、列を配列に格納するコードです。
private string[] StationNameList()
{
using (testEntities Setupctx = new testEntities())
{
return Setupctx.stations.Select(x => x.Station1).OrderBy(x => x).ToArray();
}
}
誰でも助けることができますか?どうぞよろしくお願いいたします。