We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1eabbbf + 82f7106 commit 252e775Copy full SHA for 252e775
src/GraphODataTemplateWriter/Extensions/OdcmModelExtensions.cs
@@ -730,10 +730,10 @@ public static List<OdcmProperty> GetComposableFunctionReturnTypeNavigations(this
730
throw new InvalidOperationException("This extension method is intended " +
731
"to only be called on a composable function.");
732
733
- return (odcmMethod.ReturnType as OdcmClass).Properties
+ return (odcmMethod.ReturnType as OdcmClass)?.Properties
734
.Where(p => p.IsLink)
735
.OrderBy(p => p.Name)
736
- .ToList();
+ .ToList() ?? new List<OdcmProperty>(); // default to empty list
737
}
738
739
/// <summary>
0 commit comments