SouthWind.EmployeeTerritory.Exists C# (CSharp) Method

Exists() public static method

public static Exists ( bool>.Expression expression, string connectionString, string providerName ) : bool
expression bool>.Expression
connectionString string
providerName string
return bool
        public static bool Exists(Expression<Func<EmployeeTerritory, bool>> expression,string connectionString, string providerName) {
           
            return All(connectionString,providerName).Any(expression);
        }        
        public static bool Exists(Expression<Func<EmployeeTerritory, bool>> expression) {

Same methods

EmployeeTerritory::Exists ( bool>.Expression expression ) : bool