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.
|
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.
|
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:
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 |
|||
|
|
|
A typed I think the more appropriate question here would be why use a
And there you have it, a
Furthermore, you know everything about the 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. |
|||
|
|