StaticName 和 InternalName 之间的区别(在 SPField 类中)

发布于 2024-07-26 08:59:02 字数 392 浏览 3 评论 0原文

我想让 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甜味超标? 2024-08-02 08:59:02

在 msdn 论坛上查看此问题:

名称与名称 静态名称

在 CAML 中创建网站栏时,仅需要映射到对象模型中的 SPField.InternalName 的“Name”属性,而不必设置 StaticName 属性。 因此,SPField.InternalName 和 SPField.StaticName 将返回相同的值。
但如果您在 CAML 中设置 StaticName 属性,SPField.InternalName 将返回 Name 属性中指定的值,SPField.StaticName 将返回 StaticName 属性中指定的值。

check out this question on msdn forums:

Name Vs. Static Name

When creating the Site Columns in CAML, only "Name" attribute is required which maps to SPField.InternalName in the object model, you don't have to set the StaticName attribute. Accordinly SPField.InternalName and SPField.StaticName will return the same value.
But if you set the StaticName attribute in CAML, SPField.InternalName will return the value specified in the Name attribute and SPField.StaticName will return the value specified in the StaticName attribute.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文