StaticName 和 InternalName 之间的区别(在 SPField 类中)
我想让 CAML 查询半智能 - 因为我可以给它一个标题(这是最终用户看到的),它会查找适当的“标题”作为 CAML 查询的一部分传递
var caml = "<OrderBy><FieldRef Name='" + field + "'/></OrderBy>";
:可以使用对象模型迭代列表的 Fields 集合,然后关闭 Title 属性以与用户看到的内容进行比较。 我的问题在于 StaticName 与 InternalName 的使用。 我的直觉+ MSDN 文档似乎表明InternalName 是使用和替换上述代码中的字段 的正确属性 - 特别是因为InternalName 无法修改。
谁能阐明这一点?
I want to make a CAML query semi-smart - in that I can give it a Title (which is what the end user sees) and it looks up the appropriate "Title" to pass as part of the CAML query:
var caml = "<OrderBy><FieldRef Name='" + field + "'/></OrderBy>";
It looks like I can iterate through the Fields collection of the list using the object model, and then key off the Title property to compare with what the user sees. My question lies in the usage of StaticName versus InternalName. My gut + the MSDN documentation seem to indicate that InternalName is the right property to use and replace field in the above code - particularly because InternalName can't be modified.
Can anyone shed light on this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 msdn 论坛上查看此问题:
名称与名称 静态名称
check out this question on msdn forums:
Name Vs. Static Name