We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 605e039 commit 8408e02Copy full SHA for 8408e02
src/JsonApiDotNetCore/Services/JsonApiContext.cs
@@ -20,13 +20,15 @@ public JsonApiContext(
20
_httpContextAccessor = httpContextAccessor;
21
Options = options;
22
}
23
+
24
public JsonApiOptions Options { get; set; }
25
public IContextGraph ContextGraph { get; set; }
26
public ContextEntity RequestEntity { get; set; }
27
public string BasePath { get; set; }
28
public QuerySet QuerySet { get; set; }
29
public bool IsRelationshipData { get; set; }
30
public List<string> IncludedRelationships { get; set; }
31
+ public int TotalRecords { get; set; }
32
33
public IJsonApiContext ApplyContext<T>()
34
{
0 commit comments