Example #1
0
        public IQueryable <Student> FindBy(System.Linq.Expressions.Expression <Func <Student, bool> > predicate)
        {
            StudentDAL           dalObject = new StudentDAL();
            IQueryable <Student> results   = dalObject.FindBy(predicate);

            return(results);
        }