I am using this pattern https://gist.github.com/pmbanugo/8456744#file-ientityrepository-cs and function is
IEnumerable<T> GetAll(
            Expression<Func<T, bool>> filter = null,
            Func<IQueryable<T>, IOrderedQueryable<T>> orderBy = null,
            string includeProperties = null
            );
I want to pass parametere orderBy
_unitOfWork.GetAll(/*please pass orderby paramter here*/); 
 
     
    