Skip to content

Instantly share code, notes, and snippets.

@jasonmccay
Created October 9, 2011 05:12
Show Gist options
  • Save jasonmccay/1273333 to your computer and use it in GitHub Desktop.
Save jasonmccay/1273333 to your computer and use it in GitHub Desktop.
Declare a private MongoDatabase object in our DeveloperController
public class DeveloperController : Controller
{
readonly MongoDatabase mongo_db;
public DeveloperController()
{
mongo_db = retreive_mongohq_db();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment