| |
GeekInterview.com > Interview Questions > Microsoft > ADO.NET 2.0
| Print | |
Question: What is basic difference between Dataset and Typed Dataset. When to use Typed dataset?
|
| June 06, 2009 09:49:44 |
#6 |
| albu77 |
Member Since: September 2007 Total Comments: 8 |
RE: What is basic difference between Dataset and Typed Dataset. When to use Typed dataset? |
With normal dataset you have to always have in mind the schema of your source of data. Typed dataset are a generated class derived from the dataset and in which every thing from the schema is included in the types generated. So when you use the typed dataset, you have full help from Intellisense and you avoid a lot of compilation and execution errors. |
| |
Back To Question | |