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...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
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...