Salam,
I have a table that contain UNIQUE constraint
in my application, I want to handle exception that thrown by UNIQUE constraint
how i catch it ???
I know that in-clouded in ORMQueryExecutionException class, But i think it contains many exceptions other than UNIQUE constraint exception
How to identify UNIQUE constraint exception ??
try
{
DataAccess.DataBase.Insert(brokerDataEn);
}
catch(ORMQueryExecutionException ex)
{
}
I use LLBL version 2.6
Adapter mode
SQl 2008