//Constructor
 public EFBookStoreRepository(BookStoreDbContext context) //calling class passes in context
 {
     _context = context;
 }
Esempio n. 2
0
 //constructor
 public EFBookStoreRepository(BookStoreDbContext context)
 {
     _context = context;
 }
Esempio n. 3
0
        public static void EnsurePopulated(IApplicationBuilder application)
        {
            BookStoreDbContext context = application.ApplicationServices.CreateScope().ServiceProvider.GetRequiredService <BookStoreDbContext>();

            if (context.Database.GetPendingMigrations().Any()) /*If there are any migrations, migrate them*/
            {
                context.Database.Migrate();
            }

            if (!context.Books.Any()) /*If there are no books in the databse, add the seed data below*/
            {
                context.Books.AddRange(

                    new Book
                {
                    Title          = "Les Miserables",
                    AuthorFName    = "Victor",
                    AuthorMName    = null,
                    AuthorLName    = "Hugo",
                    Publisher      = "Signet",
                    ISBN           = "978-0451419439",
                    Classification = "Fiction",
                    Category       = "Classic",
                    NumPages       = 1488,
                    Price          = 9.95
                },

                    new Book
                {
                    Title          = "Team of Rivals",
                    AuthorFName    = "Doris",
                    AuthorMName    = "Kearns",
                    AuthorLName    = "Goodwin",
                    Publisher      = "Simon & Schuster",
                    ISBN           = "978-0743270755",
                    Classification = "Non-Fiction",
                    Category       = "Biography",
                    NumPages       = 944,
                    Price          = 14.58
                },

                    new Book
                {
                    Title          = "The Snowball",
                    AuthorFName    = "Alice",
                    AuthorMName    = null,
                    AuthorLName    = "Schroeder",
                    Publisher      = "Bantam",
                    ISBN           = "978-0553384611",
                    Classification = "Non-Fiction",
                    Category       = "Biography",
                    NumPages       = 832,
                    Price          = 21.54
                },

                    new Book
                {
                    Title          = "American Ulysses",
                    AuthorFName    = "Ronald",
                    AuthorMName    = "C.",
                    AuthorLName    = "White",
                    Publisher      = "Random House",
                    ISBN           = "978-0812981254",
                    Classification = "Non-Fiction",
                    Category       = "Biography",
                    NumPages       = 864,
                    Price          = 11.61
                },

                    new Book
                {
                    Title          = "Unbroken",
                    AuthorFName    = "Laura",
                    AuthorMName    = null,
                    AuthorLName    = "Hillenbrand",
                    Publisher      = "Random House",
                    ISBN           = "978-0812974492",
                    Classification = "Non-Fiction",
                    Category       = "Historical",
                    NumPages       = 528,
                    Price          = 13.33
                },

                    new Book
                {
                    Title          = "The Great Train Robbery",
                    AuthorFName    = "Michael",
                    AuthorMName    = null,
                    AuthorLName    = "Crichton",
                    Publisher      = "Vintage",
                    ISBN           = "978-0804171281",
                    Classification = "Fiction",
                    Category       = "Historical Fiction",
                    NumPages       = 288,
                    Price          = 15.95
                },

                    new Book
                {
                    Title          = "Deep Work",
                    AuthorFName    = "Cal",
                    AuthorMName    = null,
                    AuthorLName    = "Newport",
                    Publisher      = "Grand Central Publishing",
                    ISBN           = "978-1455586691",
                    Classification = "Non-Fiction",
                    Category       = "Self-Help",
                    NumPages       = 304,
                    Price          = 14.99
                },

                    new Book
                {
                    Title          = "It's Your Ship",
                    AuthorFName    = "Michael",
                    AuthorMName    = null,
                    AuthorLName    = "Abrashoff",
                    Publisher      = "Grand Central Publishing",
                    ISBN           = "978-1455523023",
                    Classification = "Non-Fiction",
                    Category       = "Self-Help",
                    NumPages       = 240,
                    Price          = 21.66
                },

                    new Book
                {
                    Title          = "The Virgin Way",
                    AuthorFName    = "Richard",
                    AuthorMName    = null,
                    AuthorLName    = "Branson",
                    Publisher      = "Portfolio",
                    ISBN           = "978-1591847984",
                    Classification = "Non-Fiction",
                    Category       = "Business",
                    NumPages       = 400,
                    Price          = 29.16
                },

                    new Book
                {
                    Title          = "Sycamore Row",
                    AuthorFName    = "John",
                    AuthorMName    = null,
                    AuthorLName    = "Grisham",
                    Publisher      = "Bantam",
                    ISBN           = "978-0553393613",
                    Classification = "Fiction",
                    Category       = "Thrillers",
                    NumPages       = 642,
                    Price          = 15.03
                },
                    /*New books added by me*/
                    new Book
                {
                    Title          = "The Book of Mormon",
                    AuthorFName    = "Many",
                    AuthorMName    = "Ancient",
                    AuthorLName    = "Prophets",
                    Publisher      = "The Church of Jesus Christ of Latter-day Saints",
                    ISBN           = "978-0385513166",
                    Classification = "Non-Fiction",
                    Category       = "Scripture",
                    NumPages       = 532,
                    Price          = 0.00
                },

                    new Book
                {
                    Title          = "How to Win Friends and Influence People",
                    AuthorFName    = "Dale",
                    AuthorMName    = null,
                    AuthorLName    = "Carnegie",
                    Publisher      = "Simon & Schuster",
                    ISBN           = "978-0671027032",
                    Classification = "Non-Fiction",
                    Category       = "Self-Help",
                    NumPages       = 291,
                    Price          = 11.85
                },

                    new Book
                {
                    Title          = "East of Eden",
                    AuthorFName    = "John",
                    AuthorMName    = null,
                    AuthorLName    = "Steinbeck",
                    Publisher      = "The Viking Press",
                    ISBN           = "978-0140186390",
                    Classification = "Fiction",
                    Category       = "Historical Fiction",
                    NumPages       = 608,
                    Price          = 30.84
                }

                    );

                context.SaveChanges();
            }
        }
Esempio n. 4
0
        public static void EnsurePopulated(IApplicationBuilder application)
        {
            BookStoreDbContext context = application.ApplicationServices.CreateScope().ServiceProvider.GetRequiredService <BookStoreDbContext>();

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

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

                    new Book
                {
                    Title     = "Les Miserables",
                    Author    = "Victor Hugo",
                    Publisher = "Signet",
                    ISBN      = "978-0451419439",
                    Category  = "Fiction, Classic",
                    Price     = 9.95M
                },

                    new Book
                {
                    Title     = "Team of Rivals",
                    Author    = "Doris Kearns Goodwin",
                    Publisher = "Simon & Schuster",
                    ISBN      = "978-0743270755",
                    Category  = "Non-Fiction, Biography",
                    Price     = 14.58M
                },

                    new Book
                {
                    Title     = "The Snowball",
                    Author    = "Alice Schroeder",
                    Publisher = "Bantam",
                    ISBN      = "978-0553384611",
                    Category  = "Non-Fiction, Biography",
                    Price     = 21.54M
                },

                    new Book
                {
                    Title     = "American Ulysses",
                    Author    = "Ronald C. White",
                    Publisher = "Random House",
                    ISBN      = "978-0812981254",
                    Category  = "Non-Fiction, Biography",
                    Price     = 11.61M
                },

                    new Book
                {
                    Title     = "Unbroken",
                    Author    = "Laura Hillenbrand",
                    Publisher = "Random House",
                    ISBN      = "978-0812974492",
                    Category  = "Non-Fiction, Historical",
                    Price     = 13.33M
                },

                    new Book
                {
                    Title     = "The Great Train Robbery",
                    Author    = "Michael Crichton",
                    Publisher = "Vintage",
                    ISBN      = "978-0804171281",
                    Category  = "Fiction, Historical Fiction",
                    Price     = 15.95M
                },

                    new Book
                {
                    Title     = "Deep Work",
                    Author    = "Cal Newport",
                    Publisher = "Grand Publishing Central",
                    ISBN      = "978-1455586691",
                    Category  = "Non-Fiction, Self-Help",
                    Price     = 14.99M
                },

                    new Book
                {
                    Title     = "It's Your Ship",
                    Author    = "Michael Abrashoff",
                    Publisher = "Grand Publishing Central",
                    ISBN      = "978-1455523023",
                    Category  = "Non-Fiction, Self-Help",
                    Price     = 21.66M
                },

                    new Book
                {
                    Title     = "The Virgin Way",
                    Author    = "Richard Branson",
                    Publisher = "Portfolio",
                    ISBN      = "978-1591847984",
                    Category  = "Non-Fiction, Business",
                    Price     = 29.16M
                },

                    new Book
                {
                    Title     = "Sycamore Row",
                    Author    = "John Grisham",
                    Publisher = "Bantam",
                    ISBN      = "978-0553393613",
                    Category  = "Fiction, Thrillers",
                    Price     = 15.03M
                }

                    );

                context.SaveChanges();
            }
        }
Esempio n. 5
0
        public static void EnsurePopulated(IApplicationBuilder application)
        {
            BookStoreDbContext context = application.ApplicationServices.CreateScope().ServiceProvider.GetRequiredService <BookStoreDbContext>();

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

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

                    new Book
                {
                    Title           = "Les Miserables",
                    AuthorFirstName = "Victor",
                    AuthorLastName  = "Hugo",
                    Publisher       = "Signet",
                    ISBN            = "978-0451419439",
                    Classification  = "Fiction",
                    Category        = "Classic",
                    Price           = 9.95M,
                    Pages           = 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.58M,
                    Pages           = 944,
                },

                    new Book
                {
                    Title           = "The Snowball",
                    AuthorFirstName = "Alice",
                    AuthorLastName  = "Schroeder",
                    Publisher       = "Bantam",
                    ISBN            = "978-0553384611",
                    Classification  = "Non-Fiction",
                    Category        = "Biography",
                    Price           = 21.54M,
                    Pages           = 832,
                },

                    new Book
                {
                    Title           = "American Ulysses",
                    AuthorFirstName = "Ronald C.",
                    AuthorLastName  = "White",
                    Publisher       = "Random House",
                    ISBN            = "978-0812981254",
                    Classification  = "Non-Fiction",
                    Category        = "Biography",
                    Price           = 11.61M,
                    Pages           = 864,
                },

                    new Book
                {
                    Title           = "Unbroken",
                    AuthorFirstName = "Laura",
                    AuthorLastName  = "Hillenbrand",
                    Publisher       = "Random House",
                    ISBN            = "978-0812974492",
                    Classification  = "Non-Fiction",
                    Category        = "Historical",
                    Price           = 13.33M,
                    Pages           = 528,
                },

                    new Book
                {
                    Title           = "The Great Train Robbery",
                    AuthorFirstName = "Michael",
                    AuthorLastName  = "Crichton",
                    Publisher       = "Vintage",
                    ISBN            = "978-0804171281",
                    Classification  = "Fiction",
                    Category        = "Historical Fiction",
                    Price           = 15.95M,
                    Pages           = 288,
                },

                    new Book
                {
                    Title           = "Deep Work",
                    AuthorFirstName = "Cal",
                    AuthorLastName  = "Newport",
                    Publisher       = "Grand Publishing Central",
                    ISBN            = "978-1455586691",
                    Classification  = "Non-Fiction",
                    Category        = "Self-Help",
                    Price           = 14.99M,
                    Pages           = 304,
                },

                    new Book
                {
                    Title           = "It's Your Ship",
                    AuthorFirstName = "Michael ",
                    AuthorLastName  = "Abrashoff",
                    Publisher       = "Grand Publishing Central",
                    ISBN            = "978-1455523023",
                    Classification  = "Non-Fiction",
                    Category        = "Self-Help",
                    Price           = 21.66M,
                    Pages           = 240,
                },

                    new Book
                {
                    Title           = "The Virgin Way",
                    AuthorFirstName = "Richard",
                    AuthorLastName  = "Branson",
                    Publisher       = "Portfolio",
                    ISBN            = "978-1591847984",
                    Classification  = "Non-Fiction",
                    Category        = "Business",
                    Price           = 29.16M,
                    Pages           = 400,
                },

                    new Book
                {
                    Title           = "Sycamore Row",
                    AuthorFirstName = "John",
                    AuthorLastName  = "Grisham",
                    Publisher       = "Bantam",
                    ISBN            = "978-0553393613",
                    Classification  = "Fiction",
                    Category        = "Thrillers",
                    Price           = 15.03M,
                    Pages           = 642,
                },

                    new Book
                {
                    Title           = "Mistborn",
                    AuthorFirstName = "Brandon",
                    AuthorLastName  = "Sanderson",
                    Publisher       = "Tor Books",
                    ISBN            = "978-0575089914",
                    Classification  = "Fiction",
                    Category        = "Fantasy",
                    Price           = 12.56M,
                    Pages           = 541,
                },

                    new Book
                {
                    Title           = "How to Win Friends and Influence People",
                    AuthorFirstName = "Dale",
                    AuthorLastName  = "Carnegie",
                    Publisher       = "Simon and Schuster",
                    ISBN            = "978-0671027032",
                    Classification  = "Non-Fiction",
                    Category        = "Self-Help",
                    Price           = 17.99M,
                    Pages           = 291,
                },

                    new Book
                {
                    Title           = "The Way of Kings",
                    AuthorFirstName = "Brandon",
                    AuthorLastName  = "Sanderson",
                    Publisher       = "Tor Books",
                    ISBN            = "978-0575102484",
                    Classification  = "Fiction",
                    Category        = "Epic Fantasy",
                    Price           = 9.59M,
                    Pages           = 1007,
                }

                    );

                context.SaveChanges();
            }
        }
Esempio n. 6
0
 public ApplicationSignInManager(
     ApplicationUserManager userManager, IAuthenticationManager authenticationManager) :
     base(userManager, authenticationManager)
 {
     this._db = new BookStoreDbContext();
 }