我有一个UserGroup表,用于存储GroupID和关联的UserName。目前用户存在于活动目录中,因此我没有Users表。 但在将任何用户分配给UserGroup表之前,我想检查用户是否已在Active Directory中定义。所以我发现在我的UserGroup Model对象中编写一个验证对象是一个很好的方法所以我写了下面的insdie我的USerGroup Partial类: -
List<DomainContext> results = new List<DomainContext>();
using (var context = new PrincipalContext(ContextType.Domain, "WIN-SPDEV"))
using (var searcher = new PrincipalSearcher(new UserPrincipal(context)))
{
var searchResults = searcher.FindAll();
foreach (Principal p in searchResults)
{
//not sure what to write here !!!
}}
yield return new ValidationResult("UserName does not exsists.");}
但我不确定如何实现唯一性检查!!!
答案 0 :(得分:1)
请尝试以下代码:
var searchResults = searcher.FindAll();
foreach (Principal p in searchResults)
{
if(p.SamAccountName == User.Identity.Name)
{
//your in!
}
}
答案 1 :(得分:1)
尝试:
using (var context = new PrincipalContext(ContextType.Domain, "WIN-SPDEV"))
{
UserPrincipal user = UserPrincipal.FindByIdentity(context, searchedUserName);
if (user != null)
{
//user found
}
}