コード例 #1
0
 private void MainPage_Loaded(object sender, RoutedEventArgs e)
 {
     using (var db = new DBInstanceContext())
     {
         lv1.ItemsSource = db.Blogs.ToList();
     }
 }
コード例 #2
0
        /// <summary>
        /// Initializes the singleton application object.  This is the first line of authored code
        /// executed, and as such is the logical equivalent of main() or WinMain().
        /// </summary>
        public App()
        {
            this.InitializeComponent();
            this.Suspending += OnSuspending;

            using (var db = new DBInstanceContext())
            {
                db.Database.Migrate();
            }
        }
コード例 #3
0
 private void Button_Click(object sender, RoutedEventArgs e)
 {
     using (var db = new DBInstanceContext())
     {
         var blog = new Blog()
         {
             Url = blogUriTbx.Text
         };
         db.Blogs.Add(blog);
         db.SaveChanges();
         lv1.ItemsSource = db.Blogs.ToList();
     }
 }