Reputation: 917
I have a database call which gives me 40 columns and 75000 rows, I am using a WCF service to get the data to client , my method returns this object to the client and after getting the data and into an object to send to the front end it takes atleast 5 secs. How can I optomize this.
Upvotes: 0
Views: 158
Reputation: 65391
It sounds like you are downloading the entire database to the client.
The best optimisation would then be to only download information to the client that you really need to download, and do not download it until it is required.
Upvotes: 1