没有记录添加到 Linq Select from DbCommand.ExecuteReader 中的 DataTable
这段代码看起来应该可以工作,实际上它可以编译并运行。但是,来自 cmd.ExecuetReader()
的记录(并且有记录)并未按预期添加到 dt
中。有人看到可能缺少什么吗?
DataTable dt = new DataTable();
cmd.Connection.Open();
cmd.ExecuteReader().Cast<DbDataRecord>().Cast<DataRow>().Select(r=>dt.Rows.Add(r.ItemArray));
或者,有没有更直接的方法来做到这一点,当然使用 linq :)
This code looks like it should work, in fact it compiles and runs. However, the records from the cmd.ExecuetReader()
(and there are records,) are not being added to dt
as expected. Anyone see what could be missing?
DataTable dt = new DataTable();
cmd.Connection.Open();
cmd.ExecuteReader().Cast<DbDataRecord>().Cast<DataRow>().Select(r=>dt.Rows.Add(r.ItemArray));
Or, is there a more straightforward way of doing this, using linq of course :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
林克很懒。当您实际访问它的数据时它才会执行。
这可能有效:
调用
ToList()
强制 linq 执行Linq is lazy. It just get executes when you actually access it's data.
This might work:
Calling
ToList()
forces linq to execute