I am using the Grid control with the OdataV4Adaptor. For PUT/PATCH operations, the API is expecting TWO keys. Here is the API's PATCH mathod:
[HttpPatch("Fiscal_Records_View({eid},{tid})")]
public async Task<IActionResult> UpdateFiscalRecords(Guid eid, Guid tid, [FromBody] Fiscal_Records_ViewForUpdateDto patch)
{ code here }
Can I override or extend the OdataV4Adaptors PUT/PATCH methods to accomplish this. If not, what would you recommend as a solution?