Skip to content

Commit b1f6524

Browse files
committed
ApplySortFields should be virtual, not static
1 parent 6878110 commit b1f6524

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Build/CommonAssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
//
1616
// You can specify all the values or you can default the Revision and Build Numbers
1717
// by using the '*' as shown below:
18-
[assembly: AssemblyVersion("3.5.0")]
19-
[assembly: AssemblyFileVersion("3.5.0")]
18+
[assembly: AssemblyVersion("3.5.1")]
19+
[assembly: AssemblyFileVersion("3.5.1")]
2020
//[assembly: AssemblyInformationalVersion("2.5-filters")]

Griddly.Mvc/Results/QueryableResult.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ public override long GetCount()
142142
return GetQuery().Count();
143143
}
144144

145-
protected static IQueryable<T> ApplySortFields(IQueryable<T> source, SortField[] sortFields, string finalSortField)
145+
protected virtual IQueryable<T> ApplySortFields(IQueryable<T> source, SortField[] sortFields, string finalSortField)
146146
{
147147
IOrderedQueryable<T> sortedQuery = null;
148148

0 commit comments

Comments
 (0)