pajarokillo
Programmer
Hi!, i am doing a web application that will be it a Extranet.My doubt is the following, for example, you assume that i want to fill a dropdownlist with client's information, i don't know that is better and best performance, if from my logic layer to return a DataSet with the client's information or to return a ArrayList of objects of type Client and to fill the dropdownlist with the ArrayList. With the first option, my data access layer should be to return a DataSet, and with the second option it should be to return a SqlDataReader and to build a ArrayList, but i had read that the data access is more efficient to use a SqlDataReader than a DataSet. Can you help me to resolve this doubt?, thanks.