I'm working on a silverlight reporting tool which draws up all sorts of fancy graphs based on client data. The issue I'm having right now is a good way to get all the data I need from the database to my silverlight app.
Sofar I have a web service which chunks up my data into groups of 1000 and ships them back to me. I need a bit over 3000 records, which calls for about 4 calls to the web service at 2 seconds a piece. Needless to say, it's slower than I'd want it to be.
I currently have these set:
binding.MaxBufferSize = 2147483647;
binding.MaxReceivedMessageSize = 2147483647;
I'm sure someone has a better way to grab db data that's faster. At the very least, a way that would let me get all my data in one try.