【发布时间】:2016-01-23 14:13:25
【问题描述】:
我正在尝试将成员添加到 azure 活动目录组,但它失败了,它显示我出现以下错误。
上下文已经在跟踪实体
我试图找到很多,我也看到了这个链接
Azure Active Directory Graph Client 2.0 - Context is not currently tracking the entity
但是我没有成功,请帮助我。
这是我的代码:
try
{
ActiveDirectoryClient client = ADGraphHelper.GetActiveDirectoryClient();
IGroupFetcher groupFetcher = client.Groups.GetByObjectId(groupId);
Group group = (Group)(await groupFetcher.ExecuteAsync());
string[] userIds = userId.Split(',');
foreach (string id in userIds)
{
if (id != "")
{
IUser user = client.Users.Where(u => u.ObjectId == id).ExecuteAsync().Result.CurrentPage.ToArray().First();
if (user != null)
{
//check wather user aleady present into group or not
IDirectoryObject userExists = group.Members.Where(u => u.ObjectId == id).FirstOrDefault();
if (userExists == null)
{
group.Members.Add(user as DirectoryObject);
}
}
else
throw new Exception("User is null.");
}
}
await group.UpdateAsync();
return Json(new { success = true });
}
catch (Exception ex)
{
ModelState.AddModelError("", "we connot process your request please contact to support for more details.");
// error handling code.
return PartialView();
}
【问题讨论】:
标签: c# azure c#-4.0 azure-active-directory active-directory-group