Ejemplo n.º 1
0
        public static void EnsurePopulated(IApplicationBuilder application)
        {
            MovieDBContext context = application.ApplicationServices.
                                     CreateScope().ServiceProvider.GetRequiredService <MovieDBContext>();

            if (context.Database.GetPendingMigrations().Any())
            {
                context.Database.Migrate();
            }

            if (!context.Movies.Any())
            {
                context.Movies.AddRange(

                    new MoviesModel
                {
                    Category = "Romance",
                    Title    = "Breakfast at Tiffany's",
                    Year     = 1961,
                    Director = "Blake Edwards",
                    Rating   = "G",
                    Edited   = false,
                    Lent     = "Alle Baker",
                    Notes    = "This is one of the best movies known to man!"
                });
                context.SaveChanges();
            }
        }
Ejemplo n.º 2
0
 public EFMovieRepository(MovieDBContext context)
 {
     _context = context;
 }