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 All,I'm looking for a easy way to delete all members. I have to import a new excell sheet. Non existing members in that list have to be removed.Cheers,Bas
put this in a user control...
IEnumerable<Member> AverageJoes = Member.GetAllAsList();
foreach (Member Joe in AverageJoes)
{
Joe.delete();
}
is working on a reply...
This forum is in read-only mode while we transition to the new forum.
You can continue this topic on the new forum by tapping the "Continue discussion" link below.
Continue discussion
Remove all members
Hi All,
I'm looking for a easy way to delete all members. I have to import a new excell sheet. Non existing members in that list have to be removed.
Cheers,
Bas
put this in a user control...
IEnumerable<Member> AverageJoes = Member.GetAllAsList();
foreach (Member Joe in AverageJoes)
{
Joe.delete();
}
is working on a reply...
This forum is in read-only mode while we transition to the new forum.
You can continue this topic on the new forum by tapping the "Continue discussion" link below.