根据Microsoft网站上的Database.ExecutedDataSet方法
Retired Content
This content is outdated and is no longer being maintained. It is provided as a
courtesy for individuals who are still using these technologies. This page may
contain URLs that were valid when originally published, but now link to sites
or pages that no longer exist.
所以我的问题是填充DataSet或DataTable的最新且最好的方法是什么?
答案 0 :(得分:3)
Microsoft希望您在填充DataSet时使用DataReader或DataAdapter,这里是Microsoft's page。它在DataAdapter上使用Fill方法。
然后,您可以使用Add method将DataRows添加到该DataSet。
答案 1 :(得分:1)
v5仍然有it。
答案 2 :(得分:-1)
“此内容已过时”在这种情况下意味着您正在查看entlib的旧文档。
编辑: 方法不会过时也不会被替换。它仍然存在于新版本的entlib中。
EDIT2: 并且不推荐使用该方法。