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 415306e commit 52a452dCopy full SHA for 52a452d
src/JsonApiDotNetCore/Formatters/JsonApiReader.cs
@@ -83,6 +83,7 @@ public Task<InputFormatterResult> ReadAsync(InputFormatterContext context)
83
}
84
85
86
+ /// <summary> Checks if the deserialized payload has an ID included </summary
87
private bool CheckForId(object model)
88
{
89
if (model == null) return false;
@@ -97,6 +98,7 @@ private bool CheckForId(object model)
97
98
return false;
99
100
101
+ /// <summary> Checks if the elements in the deserialized payload have an ID included </summary
102
private bool CheckForId(IList modelList)
103
104
foreach (var model in modelList)
0 commit comments