如何使用 CAML 查询检查 ContentType.Hidden?

发布于 2024-12-26 02:50:20 字数 326 浏览 0 评论 0原文

我想从 CAML 查询过滤到 ListItem.ContentType.Hidden。

与 SharePoint To Linq 像这样的代码。

var query = from item in list.GetItems(CamlQuery.CreateAllItemsQuery()) 
                where item.ContentType.Hidden == false select item;

如果我使用纯 CAML 查询进行检查,我应该编写代码吗?如何编写?

是一个简单的问题。

谢谢。

I want to filter from the CAML query to ListItem.ContentType.Hidden.

with SharePoint To Linq like this Code.

var query = from item in list.GetItems(CamlQuery.CreateAllItemsQuery()) 
                where item.ContentType.Hidden == false select item;

If I check with pure CAML Query,Should I write code and how?

Is a simple question.

Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

┊风居住的梦幻卍 2025-01-02 02:50:20

您无法在纯 CAML 查询中检查 Hidden 属性。在 CAML 中,只有 ContentType 的名称和 ID 可用(字段 ContentTypeContentTypeID)。

如果只有少数隐藏内容类型需要排除,您可以首先加载这些隐藏内容类型并在 CAML 查询中排除它们:

提取隐藏内容类型:

SPWeb web = // ...
IEnumerable<string> contentTypeIds = web.AvailableContentTypes
  .Cast<SPContentType>()
  .Where(ct => ct.Hidden)
  .Select(ct => ct.Id.ToString());

CAML 查询:

<Where>
  <And>
    <Neq>
      <FieldRef Name='ContentTypeID'/>
      <Value Type='Text'>[HiddenContentTypeId]</Value>
    </Neq>
    <Neq>
      <FieldRef Name='ContentTypeID'/>
      <Value Type='Text'>[AnotherHiddenContentTypeId]</Value>
    </Neq>
  </And>
  <!-- more hidden content types -->
</Where>

You cannot check the Hidden property in a pure CAML query. In CAML only the ContentType's name and the ID is available (Fields ContentType and ContentTypeID).

If there are only a few hidden content types that have to be excluded you could first load these hidden content types and exclude them in the CAML query:

Extract hidden content types:

SPWeb web = // ...
IEnumerable<string> contentTypeIds = web.AvailableContentTypes
  .Cast<SPContentType>()
  .Where(ct => ct.Hidden)
  .Select(ct => ct.Id.ToString());

CAML query:

<Where>
  <And>
    <Neq>
      <FieldRef Name='ContentTypeID'/>
      <Value Type='Text'>[HiddenContentTypeId]</Value>
    </Neq>
    <Neq>
      <FieldRef Name='ContentTypeID'/>
      <Value Type='Text'>[AnotherHiddenContentTypeId]</Value>
    </Neq>
  </And>
  <!-- more hidden content types -->
</Where>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文