SouthWind.EmployeeTerritory.Find C# (CSharp) Method

Find() public static method

public static Find ( bool>.Expression expression ) : IList
expression bool>.Expression
return IList
        public static IList<EmployeeTerritory> Find(Expression<Func<EmployeeTerritory, bool>> expression) {
            
            var repo = GetRepo();
            return repo.Find(expression).ToList();
        }
        

Same methods

EmployeeTerritory::Find ( bool>.Expression expression, string connectionString, string providerName ) : IList