我有一个方法可以使用 sql 命令从数据库中返回重复记录。代码是:
public bool RecordExists(string name)
{
OleDbCommand cmd = new OleDbCommand("select count(*) from Demographics where thal_Id = '" + txtPtntSmpl.Text + "'", con);
int recordCount = Convert.ToInt32(cmd.ExecuteScalar());
cn.Close();
return recordCount > 0;
}
据此,如果我在文本框离开事件中调用此方法,我将在数据库中出现重复记录时引发错误。现在我想要使用 linq 进行相同的操作。请任何人帮助我。感谢您