我有两个 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 语句是错误的:/