gpt4 book ai didi

c# - 使用 SharePoint Lists.asmx GetListItems 按名称搜索文档

转载 作者:行者123 更新时间:2023-11-30 20:09:30 24 4
gpt4 key购买 nike

这是我的代码:

StringBuilder sb = new StringBuilder();
sb.AppendLine(@"<Where><Lt>");
sb.AppendLine(@"<FieldRef Name=""FileRef"" /><Value Type=""Text"">momo.txt</Value>");
sb.AppendLine(@"</Lt></Where>");

XmlDocument xmlDoc = new System.Xml.XmlDocument();

XmlNode ndQuery = xmlDoc.CreateNode(XmlNodeType.Element, "Query", "");
ndQuery.InnerXml = sb.ToString();

XmlNode resultsElement1 = listsProxy.GetListItems("Documents", "", ndQuery,
null, null, null, "");

但它会返回所有文档,知道我在这里做错了什么吗?

谢谢。

最佳答案

目前您的查询是针对名称值小于 momo.text 而不是等于它的项目。因此,将 Lt 更改为 Eq

关于c# - 使用 SharePoint Lists.asmx GetListItems 按名称搜索文档,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6154706/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com