Skip to content

Instantly share code, notes, and snippets.

@fractos
Last active August 29, 2015 14:20
MongoDBUserStore - Get
public User Get(string username)
{
AssertIsStarted();
return _collection
.Find(new BsonDocument("username", username))
.FirstAsync().Result.ConvertBsonToUser();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment