0

指定コードと指定名を含む「指定」という名前のリストがあります。従業員名と指定名を含む「従業員」という名前の別のリストがあります (ルックアップ フィールドとして)。次のコードを使用して、「従業員」リストに値を挿入できます。

    protected void AddEmp(object sender, EventArgs e)
    {
      string emp_name = txtEmployeeName.Text;
      string emp_designation = ddlDesignation.SelectedValue;                    
      using (SPSite site = new SPSite("My Site"))
      {
       using (SPWeb web = site.OpenWeb())
       {
        SPSecurity.RunWithElevatedPrivileges(delegate()
        {
         web.AllowUnsafeUpdates = true;
         SPList splist_employees = web.Lists["Employee"];
         SPList splist_designations = web.Lists["Designations"];
         SPListItemCollection splc_items = splist_employees.Items;
         SPListItem spli_item = splc_items.Add();
         SPFieldLookup lookup = splist_employees.Fields["Designated"] as SPFieldLookup;
         string fieldName = lookup.LookupField;
         spli_item["Employee Name"] = emp_name;
         spli_item[fieldName] = GetLookFieldIDS(emp_designation, splist_designations);
         spli_item.Update();
         });
        }
      }
    }

    public static string GetLookFieldIDS(string lookupValues, SPList lookupSourceList)
    {
     string id = string.Empty;
     SPFieldLookupValueCollection lookupIds = new SPFieldLookupValueCollection();
     SPQuery query = new Microsoft.SharePoint.SPQuery();
     query.Query = "<Where><Eq><FieldRef Name='Designation' /><Value type='Text'>"+lookupValues + "</Value></Eq></Where>";
     SPListItemCollection listItems = lookupSourceList.GetItems(query);
     foreach (Microsoft.SharePoint.SPListItem item in listItems)
     {
      id = item.ID.ToString();
     }
     return id;
    }

ここでは、クエリ内でフィールド名を「指定」として指定しています。

しかし、フィールド名を「指定」としてハードコーディングするのではなく、ユーザー側から与えられた値に基づいてフィールド名を見つけたいと思います。

どんな助けでも大歓迎です。前もって感謝します。

4

1 に答える 1

0

リクエストについてはわかりませんが、SPFieldLookup.LookupFieldプロパティを GetLookFieldIDS メソッドに渡し、「指定」の代わりにその変数を使用できます

spli_item[fieldName] = GetLookFieldIDS(emp_designation, splist_designations, lookup.LookupField); 
于 2012-05-25T13:29:30.453 に答える