/gist:a69cd136927add3cdeb2 Secret
Created
July 12, 2015 17:28
part 4 deleting a list of users from mongodb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
static void DeleteUsers(IList<User> users) | |
{ | |
using (IUserStore userStore = new MongoDBUserStore(ConnectionString, DatabaseName, CollectionName)) | |
{ | |
userStore.Start(); | |
foreach (User user in users) | |
{ | |
userStore.Delete(user); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment