private void button1_Click(object sender, EventArgs e) { decimal ID = 0; try { ID = Convert.ToDecimal(idTextBox.Text); } catch (FormatException ex) { MessageBox.Show("Hatalı veri girdiniz!"); } Abone abone = (from a in database.Abones where a.Abone_ID.Equals(ID) orderby a.İsim, a.Soyisim select a).Single(); if (abone == null) { MessageBox.Show("Böyle bir abone yok!"); } else { MessageBox.Show("Silme işlemi başarılı!"); database.Abones.DeleteOnSubmit(abone); database.SubmitChanges(); } }
private void aboneBindingNavigatorSaveItem_Click(object sender, EventArgs e) { try { Abone yeni = new Abone(); yeni.Abone_ID = Convert.ToDecimal(abone_IDTextBox.Text); yeni.Adres = richTextBox1.Text; yeni.Soyisim = soyisimTextBox.Text; yeni.Telefon = Convert.ToDecimal(telefonTextBox.Text); yeni.İsim = İsimTextBox.Text; database.Abones.InsertOnSubmit(yeni); database.SubmitChanges(); } catch (System.Data.SqlClient.SqlException v) { MessageBox.Show("Negatif ID giremezsiniz"); } catch (System.FormatException f) { MessageBox.Show("Hiçbir alan boş bırakılamaz"); } }
partial void DeleteAbone(Abone instance);
partial void UpdateAbone(Abone instance);
partial void InsertAbone(Abone instance);