Query string 服务器端URL编码到web API

Query string 服务器端URL编码到web API,query-string,encode,webapi,Query String,Encode,Webapi,我们为客户托管了一个Web API。客户发送包含+的请求。大概是这样的: /Orders?$filter=PaymentInfo_DateTime%20ge%202020-09-28T00:00:00+02:00%20and%20PaymentInfo_DateTime%20le%202020-09-29T00:00:00+02:00&$top=25&$select=OrderGUID,OrderNo&$count=true 是否有任何解决方案可以将请求url中的加号更

我们为客户托管了一个Web API。客户发送包含+的请求。大概是这样的:

/Orders?$filter=PaymentInfo_DateTime%20ge%202020-09-28T00:00:00+02:00%20and%20PaymentInfo_DateTime%20le%202020-09-29T00:00:00+02:00&$top=25&$select=OrderGUID,OrderNo&$count=true
是否有任何解决方案可以将请求url中的加号更改为#2b?我们只有API端的控制,所以无法从客户端编码url