Issue 4: GenericRepository, Get method: bad pageIndex calculation
Status:  New
Owner: ----
Reported by maxime.c...@gmail.com, Jun 18, 2012
In the GenericRepository.cs implementation in Infrastructure.Data.EntityFramework project, the second Get method l.94 has a typo error. It's missing the '-1' calculation on pageIndex.

L.94 should be:
return GetQuery<TEntity>(criteria).OrderBy(orderBy).Skip((pageIndex - 1) * pageSize).Take(pageSize).AsEnumerable();