Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I know very less about types of datasets in c# that there are two types and they are typed and un-typed. Can someone explain me what are they and what is difference between them? I know MSDN explanation but i need explanations from developers to share their experiences.

share|improve this question
3  
The question about datasets and the question title have nothing in common... – Daniel Hilgarth Oct 17 '12 at 14:36
Though it doesn't answer your question, Please read this – gdoron Oct 17 '12 at 14:36
How does the title relate to the question? You link to vs2003 stuff, are you on that platform? – rene Oct 17 '12 at 14:37
1  
What have you tried? Just start at 1 and increase the count. – Ramhound Oct 17 '12 at 14:37
sorry my bad i am poor in english – Mr_Green Oct 17 '12 at 14:37
show 3 more comments

closed as not a real question by Greg, gdoron, Nasreddine, RB., GrailsGuy Oct 17 '12 at 15:22

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

You can find information on the difference between typed and untyped datasets here:

If you are going to use DataSets, I would suggest going with the typed version:

  • Type Safety: If you change the type or the name of a DataTable or Column, the compiler will tell you what is broken.
  • Visualization: You can see your DataSet structure.
  • Less code: The code is generated for you, you don't have to write it yourself.

One notable disadvantage of a Typed DataSet: You cannot use inheritance. Ie you cannot generate a parent "Employee" DataSet and then inherit that DataSet to add extra DataTables or Columns for derived types of employees.

For generating your employee id: Once you are in the DataSet designer, you can use the PropertyGrid to set properties at the DataColumn level. Autonumbering is one of those properties.

share|improve this answer

A typed DataSet is generated by Visual Studio and built in the designer. This DataSet is able to build known properties for the tables and the columns of that table that you can use at design time. However, that's about the extent of the differences between the two because underneath the properties that are generated by the designer do nothing more than leverage the same API you would leverage on an untyped DataSet.

I think the more appropriate question here would be why use a DataSet at all, and I ask that because it's very straight forward to do data binding in different ways. For example, let's say you wanted to get a list of some table and bind that to a combo box, you might do something like this:

SqlConnection conn = new SqlConnection("connection string");
SqlCommand cmd = new SqlCommand("SELECT * FROM SomeTable", conn);
SqlDataAdapter sda = new SqlDataAdapter(cmd);
DataTable dt = new DataTable();

sda.Fill(dt);

And there you have it, a DataTable filled with the data you want. Now you can bind this easily like this:

comboBox.ValueMember = "IDField";
comboBox.DisplayMember = "DisplayField";
comboBox.DataSource = dt.DefaultView;

Furthermore, you know everything about the DataTable anyway so if you need to just operate on it just grab what you need, do what you need, and get rid of it. Finally, the section that gets the data can be thrown into a method and reused very easily making data access a breeze.

There are also a lot of other tools out there that I like even more than that, like Dapper, but that's another discussion all together. Getting a foundation on ADO.NET is a better start right now.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.