How to store group of data and pass data across layers
I am developing a Web application with n-tier architecture in mind.I need to pass data as collection of data from data layer to business layer.I also need to update the data back to the database in a group.Which is the best and the most latest way(in dotnet 3.5) to store group of data?Should i build my class using arraylist or generic list collections or some other way?
|