Skip to content

Commit

Permalink
Fix page value
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Geramb committed Jan 21, 2020
1 parent e68a2a1 commit de3db51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DCCS.Data.Source/ResultWithoutTotal.cs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ protected IQueryable<T> Paging(IQueryable<T> data)
IQueryable<T> tempresult = null; // Wird für "Kann diese Seite überhaupt angezeigt werden" benötigt
if (Page.HasValue)
{
if (!Count.HasValue) throw new ArgumentNullException("Bei angegebener Seite (page) muss auch die Anzahl der Einträge (count) angegeben werden!");
if (!Count.HasValue)
throw new ArgumentNullException($"With specified {nameof(Page)} is the {nameof(Count)} required");

//Manuel 24.10.2016
//INFO: es wurde falsche ergebnisse geliefert weil "OrderBy>true" gefehlt hat. -> das sollte sich stephan nochmal anschauen
Expand All @@ -106,7 +107,6 @@ protected IQueryable<T> Paging(IQueryable<T> data)
}
else
{
Page = 1;
if (Count.HasValue)
{
tempresult = data.Take(Count.Value);
Expand Down

0 comments on commit de3db51

Please sign in to comment.