HarmonyCore icon indicating copy to clipboard operation
HarmonyCore copied to clipboard

Add support for deleting or patching all items of a collection.

Open SteveIves opened this issue 4 years ago • 1 comments

The OData 4 spec states that “ To apply a PATCH or DELETE request to each member of a collection, clients append the path segment /$each to a resource path identifying a collection.”. We should add support for this.

http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part2-url-conventions.html#sec_AddressingEachMemberofaCollection

Need to figure out if the underlying OData library supports this.

SteveIves avatar Apr 16 '20 01:04 SteveIves

This is currently not supported in current OData.net libraries. $filter may be a support path for this, but it may require a custom routing convention

theplasmastorm avatar Mar 04 '21 20:03 theplasmastorm