コード例 #1
0
        public void Should_UpdateToLatestSchema()
        {
            Database.SetInitializer<TheKidsDbContext>(new MigrateDatabaseToLatestVersion<TheKidsDbContext, Configuration>());
            var context = new TheKidsDbContext();

            var addresses = context.Addresses.ToList();
        }
コード例 #2
0
ファイル: HomeController.cs プロジェクト: phoenixjun/TheKids
 public ActionResult Index()
 {
     var context = new TheKidsDbContext();
     var addresses = context.Children.ToList();
     return View();
 }