用于构建LDAP查询的C#查询语言
本文关键字:查询语言 查询 构建 LDAP 用于 | 更新日期: 2023-09-27 18:11:44
有人知道用C#构建LDAP查询的强类型语言吗?我想离开
(&(|(objectClass=user)(objectClass=group)(objectClass=computer)(objectClass=contact))((objectGUID={0})))
并且优选地具有用于构建逻辑查询的流体api。
您可以尝试Linq来LDAP
这里有一个教程
http://linqtoad.codeplex.com/是一个好的
如果您使用的是.NET 3.5及更高版本,还可以查看System.DirectoryServices.AccountManagement
(S.DS-AM(命名空间。
点击此处阅读:
- 在.NET Framework 3.5中管理目录安全主体
- System.DirectoryServices.AccountManagement上的MSDN文档
基本上,您可以定义域上下文,并在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
方法简单得多。。。