protected override void OnNavigatedTo(NavigationEventArgs e) { base.OnNavigatedTo(e); using (var db = new Data.BloggingContext()) { var posts = db.Posts.Include(post => post.Blog).ToList(); Posts = posts; } }
/// <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() { ConfigureFilters(global::Uno.Extensions.LogExtensionPoint.AmbientLoggerFactory); this.InitializeComponent(); this.Suspending += OnSuspending; using (var db = new Data.BloggingContext()) { db.Database.Migrate(); } }