1

我正在尝试围绕 LINQ 进行研究,以便弄清楚如何查询DirectoryEntry. 目前,我正在尝试在 C# 中编写一些代码,该代码将采用一个字符串变量,并根据该字符串给出一个组内的成员列表。

以下是我迄今为止设法弄清楚的

public static string[] GetAllUsersInGroup(string groupname)
{
    var names = new List<string>();
    var path = string.Format("WinNT://{0},computer", Environment.MachineName);
    var computerEntry = new DirectoryEntry(path);

    if (computerEntry != null)
    {
        using (computerEntry)
        {
            var menberNames = from DirectoryEntry childEntry
                                in computerEntry.Children.Find("testgroup", "group")
                              where childEntry.SchemaClassName == "User"
                              select childEntry.Name;

            foreach (var name in memberNames)
            {
                names.Add(name);
            }
        }
    }

    return names.ToArray();
}

问题是我不能Children.Find()在 where 语句中使用。

虽然我想知道如何正确地做到这一点,但我真的很想弄清楚这一点,因为我还需要做其他查询。因此,如果有人知道任何可以找到此信息的好来源,请告诉我

4

1 回答 1

1

我不太确定这一点。试试它是否适合你。

public static string[] GetAllUsersInGroup(string groupname)
{
    var path = string.Format("WinNT://{0},computer", Environment.MachineName);

    using (var computerEntry = new DirectoryEntry(path))
    {
        if (computerEntry != null)
        {
            return
                computerEntry.Children.SelectMany(childEntry => 
                    ChildEntry.Children.Find("Administrators", "group")
                        .Children.Select(child => child.Name))
                    .ToArray();
        }
        else 
        {
            return null;
        }
    }
}
于 2012-09-26T10:23:52.930 回答