Should I use Session/Cache to store the DataSet or should I fetch fresh from the Database each time?
问题 The amount of coding that goes into the making of a DataSet is often significant. Now I'm not sure what the industry standard or best practise when dealing with data requests from multiple ASP.NET pages. Should I use a cache/session to pass on the DataSet from page to page or should I fetch directly from the database for each page? What's the most common approach here? 回答1: Here are my thoughts: It depends on the database and the type of data that you're trying to get, as well as what may