Is there any valid use case for DataSet and DataTable now that we have Entity Framework? Should DataTable/DataSet be considered obsolete?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
I wouldn't go as far as calling them obsolete. I still use datasets when gathering data from several different datasources; xml-files, databases, etc. Then I can use I believe there may be other scenarios as well where datasets will be the right fit. |
|||
|
|
|
When you know the data schema at compile time then I'd EF would be all you need. However, there are situation where you're getting data from a service and you don't know what the schema/datatypes will be ahead of time. I think DataSet/DataTable would still be useful in that kind of scenario. |
|||
|
|