I did not find any Complete Search for ASP.NET Membership.
for example i want to search a user with this detail :
Username , Creation Date, last Activity Date , Last Login Date , Email , IsUserOnline,IsApproved , IsLockedOut , Has this Roles , Has Not This Roles .
have i load all users in RAM and filter them Server Side ?
this way has bad performance .
is there any better exist ?
I did not find any Complete Search for ASP.NET Membership. for example i want
Share
the
Membershipdid not provide search functions for the one you ask.You can use the
Membership.FindUsersByName,Membership.GetUserNameByEmailand some more that you can find on msdn, but not the other.If you have few users that are stored on your web.config file, then just load them all and make your search as you say.
If from the other hand you use a database, then you can connect to the database and get your informations you ask by simple sql query.