Hi....
I know dataset is a collections of tables but I want to know 'typed' and 'untyped' dataset in .net ? Please explain with an example ?
Thanks...
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Satyapriya NayakPosted Jan 10, 2012, 6:48 AM
Typed DataSet has a Xml schema and an Untyped DataSet donot have Xml schema.
We can insert additional columns in the type dataset but in untype we can't insert additional columns here.
Please refer the below link
http://msdn.microsoft.com/en-us/library/8bw9ksd6%28v=vs.71%29.aspx
Thanks
Sam HobbsPosted Jan 11, 2012, 6:30 AM
A typed dataset is not what you would think it is if you guess. A typed dataset is a TableAdapter or Entity Framework or something like that. It is classes corresponding with tables in a database and the classes have fields defined with corresponding .Net types for each field in the table. That is an over-simplification and if you want details you really should read some articles.
Vineet Kumar SainiPosted Jan 11, 2012, 1:32 AM
Please Nayak Ji give any simple example of Typed dataset and Untyped dataset (Not sent any link).
Thanks....