本文介绍了SPLIST作者的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我喜欢检索SPList作者,但是该用户已被删除,并且我一直在获取找不到用户"信息.当我尝试使用"spList.Author.LoginName"时.

I like to retrieve the SPList Author but this user is removed and I keep getting "User cannot be found" when I tried use "spList.Author.LoginName". 

我想问一下是否有其他解决方案来获取SPLIST作者?

I like to ask if there is alternative solution to get the SPLIST Author?

谢谢

推荐答案

请使用以下代码段获取列表作者ID,然后从内容数据库中的UserInfo表获取用户.

Please use the following code snippet to get list author id, then get the user from UserInfo table in Content Database.

using (SPSite site = new SPSite("http://sp2013/sites/team"))
{ 
	using(SPWeb web=site.OpenWeb())
	{
		SPList list = web.Lists["CustomList"];
		var listPropertiesXml = list.PropertiesXml;

		var listProperties= XElement.Parse(listPropertiesXml);
		var authorId = listProperties.Attribute("Author").Value;

	}
}
select * from [WSS_Content_2013_80].[dbo].[UserInfo]
where tp_id=18

最好的问候,

丹尼斯


这篇关于SPLIST作者的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-24 02:40