public IQueryable <Role> FindBy(System.Linq.Expressions.Expression <Func <Role, bool> > predicate) { RoleDAL dalObject = new RoleDAL(); IQueryable <Role> results = dalObject.FindBy(predicate); return(results); }