Anybody know how to update nested elements of items using asp.net core json patch?
I'm tried to use
xx.Operations.Add(new Operation<DataRequestModel>("Replace", $"schedules/{scheduleId}/status", null, DataRequestStatusEnum.ExtractionFailed));
But it throws an exception The path segment '43688769-f45e-4e84-a8d6-f071c077b9ad' is invalid for an array index.
when I use model.ApplyTo(dataRequest);
in patch action.
Thanks for any help.