У меня есть IdExample и DateExample, и я хочу проверить, существуют ли они уже в БД, используя только код (c #).
Вот пример:
Iиметь Idexample = 1 и DateExample = 20/05/2019.Если я вставлю его в базу данных, я не хочу иметь возможность вставить его снова, потому что он уже существует в базе данных.
DateTime exampleDate1= new DateTime();
DateTime exampleDate2= new DateTime();
exampleDate1= Convert.ToDateTime(DateExample.Text);
exampleDate2= Convert.ToDateTime(DateExample.Text);
if(exampleDate1.CompareTo(exampleDate2) == 0)
{
/// Message
}
I want to check even the Idexample with the date because i want to check them in the same time if they exists already
if
(Idexample = Id and DateExample = dd/mm/yyy)
{
//// message they already exists
}