Merge pull request #280 from JohnCOsborne/master

Capitalized isPaging property
This commit is contained in:
Eric Fleming
2019-07-29 20:25:25 -04:00
committed by GitHub
3 changed files with 4 additions and 4 deletions

View File

@@ -41,7 +41,7 @@ namespace Microsoft.eShopWeb.Infrastructure.Data
}
// Apply paging if enabled
if (specification.isPagingEnabled)
if (specification.IsPagingEnabled)
{
query = query.Skip(specification.Skip)
.Take(specification.Take);