Ejemplo n.º 1
0
        public void Should_UpdateToLatestSchema()
        {
            Database.SetInitializer<TheKidsDbContext>(new MigrateDatabaseToLatestVersion<TheKidsDbContext, Configuration>());
            var context = new TheKidsDbContext();

            var addresses = context.Addresses.ToList();
        }
Ejemplo n.º 2
0
 public ActionResult Index()
 {
     var context = new TheKidsDbContext();
     var addresses = context.Children.ToList();
     return View();
 }