ASP.NET Core 2.2 GroupPrincipal.FindByIdentity不再存在

时间:2019-02-21 11:42:50

标签: c# .net-core active-directory

我正在尝试将用户添加到AD中的组,但是以下示例代码不再起作用:

UserPrincipal insUserPrincipal = (UserPrincipal)lbUsers.SelectedItem;
GroupPrincipal groupPrincipal = 
  GroupPrincipal.FindByIdentity(insPrincipalContext, group.GroupName);
if (groupPrincipal.Members.Contains(insPrincipalContext, 
    IdentityType.SamAccountName, insUserPrincipal.SamAccountName))
{
    MessageBox.Show(insUserPrincipal.Name + 
      " is already a member of group " + group.GroupName);
    return;
}
groupPrincipal.Members.Add(insUserPrincipal);
groupPrincipal.Save();

有人知道如何在asp.net core 2.2中执行此操作吗?我找不到新版本。

GroupPrincipal.FindByIdentity(insPrincipalContext, group.GroupName); //No longer exists

编辑:我可以使用GroupPrincipal搜索组等-但是缺少FindByIdentity方法

1 个答案:

答案 0 :(得分:1)

为了在.NET Core上使用System.DirectoryServices.AccountManagement,您将需要安装提供此功能的NuGet package with the same name。完成此操作后,您应该可以再次访问GroupPrincipal类型。