Skip to content

Commit f1ce1d5

Browse files
committed
Fixed issue with required.
1 parent 90d0c6a commit f1ce1d5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "9.0.100",
3+
"version": "9.0.101",
44
"rollForward": "latestMinor"
55
}
66
}

src/HotChocolate/Pagination/src/Pagination.EntityFramework/Extensions/PagingQueryableExtensions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -461,8 +461,8 @@ private static Expression<Func<IGrouping<TKey, TElement>, CountResult<TKey>>> Ge
461461

462462
private class CountResult<TKey>
463463
{
464-
public required TKey Key { get; set; }
465-
public required int Count { get; set; }
464+
public TKey Key { get; set; } = default!;
465+
public int Count { get; set; }
466466
}
467467

468468
private static Page<T> CreatePage<T>(

0 commit comments

Comments
 (0)