Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeDevelopment and...Development and...DNN Platform (o...DNN Platform (o...Searching Users by display nameSearching Users by display name
Previous
 
Next
New Post
10/4/2012 1:36 PM
 

Hi All,

I need to search all users by display name for partial matches, I can't find anyway to do this with the API... At the moment, in development, I'm just doing it as follows but I'm sure this is going to be very performance heavy. Does anybody have any suggestions?

Public Shared Function SearchUsers(ByVal strSearch As String, Optional Limit As Integer = 10) As IList(Of Users.UserInfo)
Return (From u As DotNetNuke.Entities.Users.UserInfo In DotNetNuke.Entities.Users.UserController.GetUsers(0) Where u.DisplayName.ToLower Like "*" & strSearch.ToLower & "*" Take Limit).ToList
End Function

 
New Post
10/10/2012 4:54 AM
 
Does anybody have any ideas on this?
 
New Post
10/14/2012 8:46 AM
Accepted Answer 

Yes, don't do it in your code like that as it won't scale.

Unfortunately in the UserController there isn't an exposed method to do this (even though the capability is there in the internal implementation). 

Fortunately, you can call the MembershipProvider directly to do this:

List<UserInfo> objUsers = (List<UserInfo>) MembershipProvider.Instance().GetUsersBasicSearch(PortalId, 0, 100, "DisplayName", true, "DisplayName", "my-search-term-goes-here");

This will return the top 100 people sorted ascending by DisplayName and matching anything that you put in the parameter "my-search-term-goes-here". 

Hope this helps!


Scott McCulloch
Developer, F5 Networks
Owner, Ventrian DotNetNuke Modules
 
New Post
10/14/2012 1:15 PM
 
Awesome - thanks Scott, just what I was looking for.
 
Previous
 
Next
HomeHomeDevelopment and...Development and...DNN Platform (o...DNN Platform (o...Searching Users by display nameSearching Users by display name


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out