Jak sprawdzić, czy ciąg z pola tekstowego istnieje w DB
// Check for duplicates
bool isDuplicate = ExistingList.Any(r => r.Name == textBox.Name);
if (isDuplicate)
{
MessageBox.Show("Name already Exists");
return;
}
Clear Cardinal