Does anyone have any insight into patching an entity with a / in the primary key? For example:
ProductNumber = Product1
.../data/ProductsV2(ProductNumber='Product1')
{ "ProductName" = "NewName" }
Works just fine.
However, ProductNumber = 105E11/74N does not work.
This URL of course does not work: .../data/ProductsV2(ProductNumber='105E11/74N')
However encoding the ProductNumber doesn't allow it to be found: .../data/ProductsV2(ProductNumber='105E11%2F74N')
404 not found:
{
"Message": "No HTTP resource was found that matches the request URI '.../data/ProductsV2(ProductNumber='105E11/74N')'. No route data was found for this request."
}
Any help would be very much appreciated.
Thanks,
Tom