直接通过Sharepoint数据库进行取字段信息
性能就很差了,速度特别的慢。
所以只好从Sharepoint数据库入手 ,直接跟Sharepoint 数据做连接。但又遇到一个难题,因为Sharepoint的栏字段 在数据库对应的位置每个列表都一样。从而觉得不好找对应关系,后面发现数据库表 AllLists 中有 tp_Fields这个字段,应该这个字段存储的是栏字段与数据库存储字段的对应关系,通过复制这个字段的信息出来,这个信息是经过压缩的,通过解压方法得到一个XML,这个字段的信息从对象模型也可以得到 splist.Fields.SchemaXml ,得到这个XML后面可以找到栏与数据字段的对应关系了。通过XML对象访问,可以组合成SQL语句的字段,只要用到SQL 中的 CASE WHEN THEN ELSE END 语句,代码如下:
string titlecolname = "( CASE a.listid ";
foreach (SPList splist in splists)
{
try
{
string fieldxml = splist.Fields.SchemaXml;
System.Xml.XmlDocument xmldoc = new System.Xml.XmlDocument();
xmldoc.LoadXml(fieldxml);
foreach (System.Xml.XmlNode item in xmldoc.GetElementsByTagName("Field"))
{
if (item.Attributes["Name"] != null && item.Attributes["Name"].Value != null && item.Attributes["Name"].Value.ToLower().Trim() == "title")
{
if (item.Attributes["ColName"] != null && !string.IsNullOrEmpty(item.Attributes["ColName"].Value) && (!titlecolnamefl2))
{
titlecolname += " when '" + splist.ID.ToString() + "' then b." + item.Attributes["ColName"].Value;
}
}
}
}
catch (Exception ex) { }
}
titlecolname += " ELSE '' END ) as ItemTitle";