共享点列表上的 CAML 查询
我有一个包含以下字段的共享点列表:
产品名称 产品描述 价格 产品类型
产品类型可以是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议使用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);...