Browsers have limitation on the length of the URLs. IE has limitation that Url length should not exceed 2K characters.
When I form a $filter equals query, I could co
I didn't find how the $batch is used. so I used $filter for sending a long request. Its pretty easy:
DataServiceQuery ordersQuery = DataServiceQuery)this.context.CLIENTS.AddQueryOption("$filter", MyFilter());
where MyFilter() return a string like this: "ID_CLIENT = 1 or ID_CLIENT = 2"
NB: Dont use the uppercase AND. it leads to and error. use and not AND