コンボボックスを使用したデータの削除に関して問題が発生しました。エラーは私にそれを解決する方法がわからないことを促しました。誰でもそれについて私を助けることができますか?
private void btnDel_Click(object sender, EventArgs e)
{
using (testEntities Setupctx = new testEntities())
{
var Lo = Convert.ToInt16(cbLocationData.SelectedValue);
var DeleteLocation = (from delLocation in Setupctx.locations
where delLocation.Location1 == Lo
select delLocation).Single();
Setupctx.DeleteObject(DeleteLocation);
Setupctx.SaveChanges();
this.Delete_Location_Load(null, EventArgs.Empty);
MessageBox.Show("Selected Shift Timing Has Been Deleted.");
}
}
where delLocation.Location1 == Lo
次のエラーを表示している部分
演算子'=='は、タイプ'string'および'short'のオペランドには適用できません。
あなたの助けは大歓迎です。