0

我有两个 Arraylist 和一个 xml 文件。我想用 LINQ 语句过滤这个 xml 文件。

这是我的代码:

ArrayList ListOfNPSGroups = MyClass.ActiveDirectoryManager.GetGroupsInOUByValue(); //all groups from the xml

ArrayList ActiveUserList = MyClass.ActiveDirectoryManager.GetGroupmemberList(DOMAIN, Username, ListOfNPSGroups); //only the user groups

XDocument x = XDocument.Load(Server.MapPath(@"~\App_Data\location.xml"));

IEnumerable<XElement> elements;

for (int i = 0; i < ActiveUserList.Count; i++)
{
    elements = x.Descendants("plant").Where( xe => (string)xe.Attribute("group") == ActiveUserList[i].ToString());

    foreach (XElement el in elements)
    {
        el.remove();
    }
}

我的xml:

<plants>
  <plant id="DB" display=".testDB.." group="NPS_DB" />
  <plant id="EL" display=".testEL.." group="NPS_EL" />
  <plant id="IN" display="..testIN." group="NPS_IN" />
  <plant id="SB" display=".testSB.." group="NPS_SB" />
  <plant id="BL" display=".testBL.." group="NPS_BL" />
  <plant id="LS" display="..testLS.." group="NPS_LS" />
</plants>

例如:如果我的用户仅在我的 xml 更新为此的组 nps_db 和 nps_el 中,我想要:

  <plants>
      <plant id="DB" display=".testDB.." group="NPS_DB" />
      <plant id="EL" display=".testEL.." group="NPS_EL" />
    </plants>

但我认为我的 linq 语句是错误的:/

4

1 回答 1

1

你在找这个吗?

List<string> list = new List<string>{"NPS_DB", "NPS_IN"};

string xml = @"<plants>
                <plant id=""DB"" display="".testDB.."" group=""NPS_DB"" />
                <plant id=""EL"" display="".testEL.."" group=""NPS_EL"" />
                <plant id=""IN"" display=""..testIN."" group=""NPS_IN"" />
                <plant id=""SB"" display="".testSB.."" group=""NPS_SB"" />
                <plant id=""BL"" display="".testBL.."" group=""NPS_BL"" />
                <plant id=""LS"" display=""..testLS.."" group=""NPS_LS"" />
            </plants>";

var xDoc = XDocument.Parse(xml);

xDoc.Root.Descendants()
          .Where(e => !list.Contains((string)e.Attribute("group")))
          .ToList()
          .ForEach(s => s.Remove());
于 2013-10-11T13:43:02.960 回答