I have the following in my Angular service:
this.$http.delete<void>(ApiDomain.superPlan, `/v1/Attendance?resultEventId=${resultEventId}&dueEventId=${dueEventId}`)
And this is the signature of the C# method being called:
[HttpDelete(),
public async Task<IActionResult> Delete(string resultEventId, string dueEventId)
The dueEventId passed in is sometimes null. Yet in the C# method, its value is "null" instead of null. How do I pass the actual null value?