0

如果我只有内容类型 ID,我需要了解如何从站点/网络获取列表,有一些大约 500 + 列表我不想“foreach”这些列表:

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

4

1 回答 1

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>";

这里我们有你的内容类型的列表

于 2013-03-28T14:32:04.090 回答