public bool IsExist(Expression <Func <T, bool> > exp) { return(_context.Set <T>().Any(exp)); }
public bool IsExist <T>(Expression <Func <T, bool> > exp) where T : class { return(_context.Set <T>().Any(exp)); }