1

我有两个相同的 SharePoint 列表。我正在使用 C# 循环一个并使用 SP 对象模型添加到另一个。

问题是我不想添加到另一个,如果已经有一个包含 3 个特定字段的列表条目与来自列表匹配。

在 C# 中如何做到这一点?使用 CAML?

假设我的列表被称为 from 和 to,并且字段被称为 a、b 和 c。

在这里,我不想在“to”中添加一个条目,如果已​​经有一个条目与 a、b 和 c 匹配我当前的 from 条目。

SPList fList = web.GetList("/sites/xxxx/Lists/from"); 
SPList tList = web.GetList("/sites/xxxx/Lab/Lists/to"); 

foreach (SPListItem fListItem in fList.Items)     
{   
   // my caml code here i suspect?
   //SPquery.query = "CAML";
   //SPList<yourlist>.GetItems(SPQuery object) 

   SPListItem tListItem = tList.Items.Add();       
   foreach (SPField field in fList.Fields)      
    {                   
 try  
4

1 回答 1

2

我将从使用 SPMetal 开始(如果可能,LINQ To SharePoint)。

    MyContext context = new MyContext(SPContext.Current.Web.Url);

var fItems = from f in context.FromList
        select f;

foreach(FItem fitem in fItems)
{
    var toFoundItems = from t in context.ToList
                where t.Field1 == fitem.Field1 && t.Field2 == fitem.Field2 && t.Field3 == fitem.Field3
                select t;

    if(t.Count > 0)
        continue;
    else
        //Code to add items can use context to do this here also
    }

另一种方式就像你提到的并使用SPQuery。

  SPQuery query = new SPQuery();
query.Query = string.format("
<Where> 
    <AND>  

        <Eq>
            <FieldRef Name='Field1' />
            <Value Type='Text'>{0}</Value>
        </Eq>
        <And>
            <Eq>
                <FieldRef Name='Field2' />
                <Value Type='Text'>{1}</Value>
            </Eq>
            <Eq>
                <FieldRef Name='Field3' />
                <Value Type='Text'>{2}</Value>
            </Eq>
        </And>
    </And>
</Where>");

    SPListItemCollection items = tList.GetItems(query);

if(items.Count > 0)
    continue;
else
    //Code to add item

我不在我的普通电脑上,所以我无法测试这些代码中的任何一个,但应该让您了解如何开始,不幸的是,SharePoint 不允许复合唯一键。

如果您想从不同的角度解决问题,则可以使用该列表上的事件接收器来强制执行复合唯一键。

于 2012-08-08T01:05:10.913 回答