vote up 0 vote down star

I am using the SqlProfileProvider class in one of my projects and I would like to be able to search for profiles on an arbitrary profile property (e.g. Birthday).

The only search method that I have seen is the ProfileManager.FindByUserName.

Has anyone implemented that? Or do I have to iterate over the list of profiles (very inefficient) and filter?

flag

1 Answer

vote up 0 vote down

If you're going to only use the provider mechanisms, your only option is to iterate over the profiles.

However, you can certainly role your own method to search on other properties. Instead of calling ProfileManager.FindByBirthday, you'll just call your method directly off of your custom class.

link|flag
The problem with that is to load all profiles in memory. My concern is with performance. My workaround was to load the minimum set of properties in cache and use linq to find the data. – pablo Sep 29 at 7:51
I should have stated this, but my idea was to directly run your query against the DB. That will give you good performance. – Larsenal Sep 29 at 15:25

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.