November Happy Hour will be moved to Thursday December 5th.
November Happy Hour will be moved to Thursday December 5th.
That depends on the profile provider you are using, the default ASP.NET provider defined in web.config does not support search as far as I know. With synced data I am guessing you mean that you manually take AD properties and stuff them into the user profile (which is then serialized down to the database by ASP.NET)..
Hi
thanks for your reply.
Yes, we add data like this:
PersonalizedData userData = PersonalizedData.Load(user.ID);
userData["city"] = ldapUser.City;
userData.Save();
and now we would like to be able to search for all users in a particular city (actually we want more than that and also be able to combine searches...).
Can this be done through the API or should I go for the SQL tables?
Im afraid that EPiServer 4 has no function to search in pesonalizeddata.
The data is stored in tblUserProperty with exception for some wellknown properties stored in tblUser and you would have write your own queries on these tables to achieve what you want.
/johan
Hi!
I'm new to EPiserver and have searched and browsed this site and the documentation back and forth and I still haven't found how to make a search in userdata. Can anyone please enlighten me?
The thing is that we load userdata properties from our AD and I could in theory search in the AD directly, but it would be too slow so I'd rather search the synced data instead.
Please assist!