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
Is it possible to read Member properties direct from the database and avoid the Cache?
I need to do this to get Member data that is saved on this event
public void Initialize() { MemberService.Saved += MemeberService_Saved; }
However, the data is not available on this event and the Cache Updated event does not fire when saving a Member as discussed here
public void Initialize() { CacheRefresherBase<ContentCacheRefresher>.CacheUpdated += CacheUpdated; }
Hi!
What data do you need? The Saved-event should have an args-object that contains the saved member and all its properties... some thing like args.SavedEntities or something like that.
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Is it possible to read Member properties direct from the database?
Is it possible to read Member properties direct from the database and avoid the Cache?
I need to do this to get Member data that is saved on this event
However, the data is not available on this event and the Cache Updated event does not fire when saving a Member as discussed here
Hi!
What data do you need? The Saved-event should have an args-object that contains the saved member and all its properties... some thing like args.SavedEntities or something like that.
is working on a reply...