Transalation of tasks in .NET 1.1 to .NET 3.5
Posted
by ggonsalv
on Stack Overflow
See other posts from Stack Overflow
or by ggonsalv
Published on 2010-06-04T17:28:00Z
Indexed on
2010/06/14
13:42 UTC
Read the original article
Hit count: 508
In .Net 1.1 I would run a stored procedure to fill a typed dataset. I would use a Datareader to fill the dataset for speed (though it was probably not necessary)
Then I would use the Dataset to bind to multiple controls on the page so as to render the data to multiple CSS/javsript based tabs on the page. This would also reduce the database call to 1.
So I know I could this in 3.5, but is there a better way.
For example can one stored procedure create an EDM object to be used. Since the data is mainly readonly should I even bother changing or keep using the
Stored proc -> Data set -> Bind individual controls to specific data tables
© Stack Overflow or respective owner