urun adlı tablodan bir satır silcem ancak butona bastığımda
System.Data.SqlClient.SqlException: 'The DELETE statement conflicted with the REFERENCE constraint "FK_urunResimGrup_urun1". The conflict occurred in database "final", table "dbo.urunResimGrup", column 'urun_id'.
The statement has been terminated.'
Hatası veriyor sanırım tablolar arasındaki ilişkiden kaynaklanıyor bunu nasıl çözebilirim.
private void button10_Click(object sender, EventArgs e)
{
if (string.IsNullOrEmpty(textBox1.Text))
{
MessageBox.Show("Lütfen Silmek İstediğiniz Ürünün ID'sini Giriniz.");
}
else
{
baglan.Open();
SqlCommand komut = new SqlCommand("DELETE FROM urun WHERE id=(" + sira + ")", baglan);
komut.ExecuteNonQuery();
baglan.Close();
listView1.Items.Clear();
MessageBox.Show("Ürün Başarılı Bir Şekilde Silinmiştir.");
}
}