I am looking for a way to get a DTO collection from my WCF data service so that I can be informed every time the whole DTO from the collection has finished loading, I also want to be able to read it, of course.
So, if I want to get a collection of users, every time a user from the collection is fully loaded to the client (serializable), I want the client side to be notified and able to read it.
Is it possible?
Thank!
Edit: Does the callback from the client to the server, which the server will use to send each user to the client through iteration, possible / correct direction? Or is there a better solution?
source
share