bool exceptionExist = _context.OrderArticle.Any(x => x.State == "Exception");
if (!exceptionExist)
{
//Do something
}
Not working :'(
bool exceptionExist = _context.OrderArticle.Any(x => x.State == "Exception");
if (!exceptionExist)
{
//Do something
}
Not working :'(