Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hi,
I am using the Umbraco membership provider and have a field on the profile called usrID.
I want to get the maximal usrID currently set on any profile of any registred user.
Is there any way to access this information?
Maybe through the underlaying tables? or LINQ?
Thank you!
if you're using the umbraco membership provider, all member data (except for the email, login, password) are stored in table cmsPropertyData. So if you really need to find that info, write a sql query that'll fetch that info from your database.
Hope this helps.
Regards,
/Dirk
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Getting MAX member profile property
Hi,
I am using the Umbraco membership provider and have a field on the profile called usrID.
I want to get the maximal usrID currently set on any profile of any registred user.
Is there any way to access this information?
Maybe through the underlaying tables? or LINQ?
Thank you!
if you're using the umbraco membership provider, all member data (except for the email, login, password) are stored in table cmsPropertyData. So if you really need to find that info, write a sql query that'll fetch that info from your database.
Hope this helps.
Regards,
/Dirk
is working on a reply...