用于构建LDAP查询的C#查询语言

时间:2011-10-19 07:18:05

标签: c# ldap linq-to-ldap

有没有人知道在C#中构建LDAP查询的任何强类型语言?我想离开

(&(|(objectClass=user)(objectClass=group)(objectClass=computer)(objectClass=contact))((objectGUID={0})))

并且最好有一个流畅的api来构建逻辑查询。

3 个答案:

答案 0 :(得分:3)

你可以试试Linq到LDAP

这里有tutorial

答案 1 :(得分:0)

答案 2 :(得分:0)

如果您使用的是.NET 3.5及更高版本,则还可以查看System.DirectoryServices.AccountManagement(S.DS.AM)命名空间。

在这里阅读所有相关内容:

基本上,您可以定义域上下文并轻松在AD中查找用户和/或组:

// set up domain context
PrincipalContext ctx = new PrincipalContext(ContextType.Domain);

// find a user
UserPrincipal user = UserPrincipal.FindByIdentity(ctx, "SomeUserName");

if(user != null)
{
   // do something here....     
}

// find the group in question
GroupPrincipal group = GroupPrincipal.FindByIdentity(ctx, "YourGroupNameHere");

// if found....
if (group != null)
{
   // iterate over members
   foreach (Principal p in group.GetMembers())
   {
      Console.WriteLine("{0}: {1}", p.StructuralObjectClass, p.DisplayName);
      // do whatever you need to do to those members
   }
}

新的S.DS.AM使得在AD中与用户和群组玩游戏变得非常容易!比早期的DirectoryEntry方法容易得多......