No, WCF Data Services is built on top of REST, and REST itself is very closely and completely based on HTTP verbs such as GET, PUT, POST, etc. - You cannot run them on top of NetTcp because they are associated with the HTTP protocol stack.
Perhaps there are other options to reduce the transmitted data? Pull your objects - cut fat, if you can - both by the number of lines received immediately, and by the number of transmitted attributes / data fields. You are probably the most promising approach.
source
share