共享点列表上的 CAML 查询

发布于 2024-12-15 18:56:11 字数 517 浏览 3 评论 0原文

我有一个包含以下字段的共享点列表:

产品名称 产品描述 价格 产品类型


产品类型可以是 CD 或 DVD

我希望能够根据产品类型的 CAML 查询获取列表中的所有数据/记录。这是我的 CAML 查询:

string prodType1= "CD"; 字符串 prodType2=“DVD”;

string camlquery = 
@"<Where>
<Eq>
<FieldRef Name='Products_x0020_Type'/>
<Value Type='Text'>" + prodType1 + @"</Value>
</Eq>
</Where>";

我希望能够取回产品类型 CD 的所有数据/记录。如果可能的话,我怎样才能用 CAML 实现这一点。如果不可能,建议采用什么其他方法。

我已经为此挠头一个多星期了,任何帮助将不胜感激。

非常感谢

I have a sharepoint list with the following fields:

Product Name
Product Description
Price
Product Type


Product Type can be either a CD or DVD

I would like to be able to obtain all data/records on the list based on a CAML query for Product Type. Here is my CAML query:

string prodType1= "CD";
string prodType2= "DVD";

string camlquery = 
@"<Where>
<Eq>
<FieldRef Name='Products_x0020_Type'/>
<Value Type='Text'>" + prodType1 + @"</Value>
</Eq>
</Where>";

I want to be able to bring back all data/records for product type CD. How can I acieve this with CAML, if possible. If not possible what other method would be recommended for this.

I have been scratching my head with this for a over a week now, any help will be greatly appreciated.

Many Thanks in Advance

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

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

发布评论

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

评论(1

奢欲 2024-12-22 18:56:11

我建议使用U2B CamlQuery Builder..这是构建您的最简单的方法查询并为您节省很多麻烦和时间...

完成构建后,只需转到编辑器选项卡并复制查询(不带 标签);...

i'd suggest the U2B CamlQuery Builder.. it's the easiest way to build your queries and saves you a lot of trouble and time...

when you finished building just go to the editor tab and copy the query (without the <query> tag);...

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