Hi
Hope this is just some simple problem with my code cause I am still beginner
I have data grid which is connected to self made .net6 Odata 8 Api
GET [Queryable] works like a charm
but DELETE & PATCH not
ODataV4 connector what I can see and understand sends request
fx delete
DELETE https://localhost:####/odata/path(idnumber)
result is 405
and api works as standard (from swagger & postman )
DELETE https://localhost:####/odata/path?id=idnumber
is there some parameter that makes those PATCH & DELETE requests work as before
( with odata connector GET does not work cause api returns count not inlinecount allready)
Or would some expert give me solution how to make .net odata understand
this request https://localhost:####/odata/path(idnumber)
which I suppose is standard v4
with graph and so on but I do not find sample anywhere how to make it work with .net core
controller ( all blogs I find seems to talk about get post and so on cause those work)
I suppose problem may be with api more than with OdataV4 connector
Best regards
Jukka