我需要了解如何从网站/网站获取列表,如果我只有内容类型ID,有一些约500 +列表我不想“预告”那些像:
using (SPSite _SiteCollection = SPContext.Current.Site)
{
using (SPWeb _web = _SiteCollection.OpenWeb())
{
foreach (SPList _list in _web.Lists)
{
foreach (SPContentType _type in _list.ContentTypes)
{
if (_type.Id == ContentTypeIds.ocTodoCTId)
{
foreach (SPListItem _item in _list.Items)
{
//bla bla bla
}
}
}
}
}
我找到了一种方法,但它不适用于沙箱解决方案。 http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spcontenttypeusage.getusages.aspx
答案 0 :(得分:1)
此代码是一个解决方案:
SPSiteDataQuery query = new SPSiteDataQuery();
query.Webs = "<Webs Scope=\"SiteCollection\">";
query.Lists = "<Lists BaseType='1' />";
query.Query = "<Where><BeginsWith><FieldRef Name='ContentTypeId'/><Value Type='Text'>" +
"0x0101006d76968475dd473f92fbdec03bbff85e" +
"</Value></BeginsWith></Where>";
这里我们列出了你的内容类型