从 oldValues IOrderedDictionary 获取列名
我了解 FormViewUpdatedEventArgs 的 oldValues 属性包含用于更新的字段名称/值对。我当然可以使用例如 e.OldValues(x) 访问这些值 - 因为默认成员已在系统中声明。但是在这种情况下如何提取列/字段名称?
我尝试将 oldValues(x) 转换为字典条目 - 以拉动 .key 字段,但不允许进行转换。
我想我在这里遗漏了一些基本的东西 - 有什么指示吗?
干杯! :D
I understand that the oldValues property of FormViewUpdatedEventArgs contains field name/value pairs for an update. I can certainly access the values using for example e.OldValues(x) - because the default member has been declared in the system.. but how can I pull out the column/field name in this case?
I've tried casting oldValues(x) as a dictionaryentry - with a view to pulling the .key field but that cast is not allowed.
I guess I'm missing something fundamental here - any pointers, please?
Cheers! :D
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
您可能需要以下导入:
Try this:
You may need the following imports: