通过 DataTable.Select、BindingSource 和 foreach 进行搜索(C#、ADO.NET)
我有一个 DataTable X,如果我现在想要搜索某个条目,使用 BindingSource.Filter、X.Select() 还是只使用 foreach 会更快/更好?
I have a DataTable X, if I now want to search for a certain entry, would it be faster/better to use BindingSource.Filter, X.Select() or just foreach?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我无法评论性能,但如果您使用
X.Select()
,您的代码将是最通用的,因为您直接在源代码上进行操作。如果您要搜索的行可以通过对一个(或多个)执行相等比较来定位,还可以考虑设置
X.PrimaryKey
并使用x.Rows.Find()
)列。此选项通常比Select()
方法更快。I can't comment on performance, but your code will be most versatile if you use
X.Select()
, because you are operating directly on the source.Also consider setting
X.PrimaryKey
and usingx.Rows.Find()
if the row you're searching for can be located by performing an equality comparison on one (or more) columns. This option is generally faster than theSelect()
method.