Beispiel #1
0
 //constructor, pass in type of context you're wanting
 public EFBooks(BookDBContext context)
 {
     _context = context;
 }
Beispiel #2
0
        public static void EnsurePopulated(IApplicationBuilder application)
        {
            BookDBContext context = application.ApplicationServices.CreateScope().ServiceProvider.GetRequiredService <BookDBContext>();

            //if there are any migrations pending it goes and does them
            if (context.Database.GetPendingMigrations().Any())
            {
                context.Database.Migrate();
            }
            if (!context.Books.Any())
            {   //creating the context for the database
                context.Books.AddRange(
                    new Book
                {
                    Title           = "Les Miserables",
                    AuthorFirstName = "Victor",
                    AuthorLastName  = "Hugo",
                    Publisher       = "Signet",
                    ISBN            = "978-0451419439",
                    Classification  = "Fiction",
                    Category        = "Classic",
                    Price           = 9.95,
                    PageNumber      = 1488
                },
                    new Book
                {
                    Title           = "Team of Rivals",
                    AuthorFirstName = "Doris Kearns",
                    AuthorLastName  = "Goodwin",
                    Publisher       = "Simon & Schuster",
                    ISBN            = "978-0743270755",
                    Classification  = "Non-Fiction",
                    Category        = "Biography",
                    Price           = 14.58,
                    PageNumber      = 944
                },
                    new Book
                {
                    Title           = "The Snowball",
                    AuthorFirstName = "Alice ",
                    AuthorLastName  = "Schroeder",
                    Publisher       = "Bantam",
                    ISBN            = "978-0553384611",
                    Classification  = "Non-Fiction",
                    Category        = "Biography",
                    Price           = 21.54,
                    PageNumber      = 832
                },
                    new Book
                {
                    Title           = "America Ulysses",
                    AuthorFirstName = "Ronald C.",
                    AuthorLastName  = "White",
                    Publisher       = "Random House",
                    ISBN            = "978-0812981254 ",
                    Classification  = "Non-Fiction",
                    Category        = "Biography",
                    Price           = 11.61,
                    PageNumber      = 864
                },
                    new Book
                {
                    Title           = "Unbroken",
                    AuthorFirstName = "Laura",
                    AuthorLastName  = "Hillenbrand",
                    Publisher       = "Random House ",
                    ISBN            = "978-0812974492",
                    Classification  = "Non-Fiction",
                    Category        = "Historical",
                    Price           = 13.33,
                    PageNumber      = 528
                },
                    new Book
                {
                    Title           = "The Great Train Robbery",
                    AuthorFirstName = "Michael",
                    AuthorLastName  = "Crichton",
                    Publisher       = "Vintage",
                    ISBN            = "978-0804171281",
                    Classification  = "Fiction",
                    Category        = "Historical Fiction",
                    Price           = 15.95,
                    PageNumber      = 288
                },
                    new Book
                {
                    Title           = "Deep Work",
                    AuthorFirstName = "Cal",
                    AuthorLastName  = "Newport",
                    Publisher       = "Grand Central Publishing",
                    ISBN            = "978-1455586691",
                    Classification  = "Non-Fiction",
                    Category        = "Self-Help",
                    Price           = 14.99,
                    PageNumber      = 304
                },
                    new Book
                {
                    Title           = "It's Your Ship",
                    AuthorFirstName = "Michael",
                    AuthorLastName  = "Abrashoff",
                    Publisher       = "Grand Central Publishing",
                    ISBN            = "978-1455523023",
                    Classification  = "Non-Fiction",
                    Category        = "Self-Help",
                    Price           = 21.66,
                    PageNumber      = 240
                },
                    new Book
                {
                    Title           = "The Virgin Way",
                    AuthorFirstName = "Richard ",
                    AuthorLastName  = "Branson",
                    Publisher       = "Portfolio",
                    ISBN            = "978-1591847984",
                    Classification  = "Non-Fiction",
                    Category        = "Business",
                    Price           = 29.16,
                    PageNumber      = 400
                },
                    new Book
                {
                    Title           = "Sycamore Row",
                    AuthorFirstName = "Josh ",
                    AuthorLastName  = "Grisham",
                    Publisher       = "Bantam",
                    ISBN            = "978-0553393613",
                    Classification  = "Fiction",
                    Category        = "Thrillers",
                    Price           = 15.03,
                    PageNumber      = 642
                },
                    //3 more books of my interest
                    new Book
                {
                    Title           = "Oh, the Places You'll Go!",
                    AuthorFirstName = "Dr. ",
                    AuthorLastName  = "Seuss",
                    Publisher       = "Penguin Random House LLC.",
                    ISBN            = "067-9805273121",
                    Classification  = "Fiction",
                    Category        = "Children's Literature",
                    Price           = 17.00,
                    PageNumber      = 30
                },
                    new Book
                {
                    Title           = "The Rainbow Fish",
                    AuthorFirstName = "Marcus ",
                    AuthorLastName  = "Pfister",
                    Publisher       = "Simon and Schuster",
                    ISBN            = "943-0523346131",
                    Classification  = "Fiction",
                    Category        = "Children's",
                    Price           = 13.00,
                    PageNumber      = 15
                },
                    new Book
                {
                    Title           = "The Very Hungry Caterpillar",
                    AuthorFirstName = "Eric",
                    AuthorLastName  = "Carle",
                    Publisher       = "World Publishing Company",
                    ISBN            = "843-0123572912",
                    Classification  = "Fiction",
                    Category        = "Children's",
                    Price           = 18.00,
                    PageNumber      = 22
                }

                    );
                context.SaveChanges();
            }
        }