DataView.Table 不遵守 DataView.Sort 规则
我有一个名为 FubarView 的 DataView,它是通过调用我们的数据库创建的。这些列是标签、值、RawName 和原始名称。电话号码。创建 DataView 后,我向 DataView 添加了排序顺序...
this.FubarView.Sort = "RawName, Value"
然后(以及其他不相关的内容,例如设置 DisplayMember 等)将其绑定到我的 WinForms ComboBox...
cmbDefault.DataSource = this.FubarView;
这完美地工作了,使用 ComboBox,显示按预期对信息进行排序。然而,当稍后我尝试使用 ComboBox 中的 SelectedIndex 查看 FubarView 时...
phoneNumber = this.FubarView.Table.Rows[cmbDefault.SelectedIndex]["PhoneNumber"]
...它将返回错误的值,就好像 FubarView 再次按值对自身进行排序一样!你如何解决这个问题?
I have a DataView called FubarView, which was created by a call to our database. The columns are Label, Value, RawName & PhoneNumber. After creation of the DataView, I added a sort order to the DataView with...
this.FubarView.Sort = "RawName, Value"
I then (amongst other irrelevant stuff like setting DisplayMember, etc.) bound it to my WinForms ComboBox...
cmbDefault.DataSource = this.FubarView;
This worked perfectly, with the ComboBox, displaying sorted information as intended. HOWEVER, when at a later point I tried to look at FubarView using the SelectedIndex from my ComboBox...
phoneNumber = this.FubarView.Table.Rows[cmbDefault.SelectedIndex]["PhoneNumber"]
...it would return the wrong value, as if FubarView went and sorted itself by Value again! How do you fix this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是因为您正在对表上的视图进行排序,而不是对实际表进行排序。因此,如果您通过 DataView.Table 访问表,您将获得原始数据。
如果您想访问排序后的行,您应该通过 DataView 访问它们。
This is because you are sorting a view on the table, not the actual table. So if you access the Table trough DataView.Table you get your original data.
If you want to access the sorted rows you should access them trough the DataView.
我不会使用索引,而是使用 ID。
I wouldn't work with indexes, I would use IDs instead.