Home >
Programmer2Programmer.NET Forum>
ADO.NET, Entity Framework, Linq >> What is type data set?...
NOTE : Log In required to post Replies for this discussion.
What is type data set?
|
Riya Walia
|
Posted: Saturday 24, October 2009 05:11:22 PM
|
|
Hello everybody
Please explain me waht is typed dataset and advatages of typed dataset.
Riya
|
Back to Top
^ |
|
AtanuMaity | Posted: Saturday 07, November 2009 07:57:27 AM | | A typed DataSet is a class that derives from a DataSet. As such, it inherits all the methods, events, and properties of a DataSet. Additionally, a typed DataSet provides strongly typ ed methods, events, and properties. This means you can access t ables and columns by name, instead of using collection-based me thods. Aside from the improved readability of the code, a typed DataSet also allows the Visual Studio .NET code editor to auto matically complete lines as you type.
Additionally, the strongly typed DataSet provides access to val ues as the correct type at compile time. With a strongly typed DataSet, type mismatch errors are caught when the code is compi led rather than at run time.
-Atanu
| Back to Top ^ | | |
|
Home > Programmer2Programmer.NET Forum >ADO.NET, Entity Framework, Linq >> What is type data set?...
|