コード例 #1
0
        public static void InitializeDatabase()
        {
            IDatabaseInitializer<DataContext> initializer;

            if (IsAppHarbor)
                initializer = new DontDropDbJustCreateTablesIfModelChanged<DataContext>();
            else
                initializer = new DropCreateDatabaseAlways<DataContext>();

            Database.SetInitializer(new DataContext.DemoDataInitializer(initializer));

            using (var context = new DataContext())
            {
                context.Database.Initialize(false);
            }
        }
コード例 #2
0
        public static void CreateAdminUser()
        {
            using (var context = new DataContext())
            {
                var admin = new User
                                {
                                    DisplayName = "Administrator",
                                    EmailAddress = "*****@*****.**",
                                    Username = "******",
                                };

                if (!context.Users.Any(x => x.Key == admin.Key))
                {
                    context.Users.Add(admin);
                    context.SaveChanges();

                    var conn = new SqlConnectionStringBuilder(context.Database.Connection.ConnectionString);
                    SqlServices.Install(conn.InitialCatalog, SqlFeatures.Membership | SqlFeatures.RoleManager, conn.ConnectionString);

                    MembershipCreateStatus status;
                    Membership.CreateUser(admin.Username, "Password!", admin.EmailAddress, null, null, true, null, out status);
                }
            }
        }
コード例 #3
0
            protected override void Seed(DataContext context)
            {
                base.Seed(context);

                context.Users.Add(new User {
                    Username = "******",
                    EmailAddress = "*****@*****.**",
                });

                context.Users.Add(new User {
                    Username = "******",
                    EmailAddress = "*****@*****.**",
                });

                context.Users.Add(new User {
                    Username = "******",
                    EmailAddress = "*****@*****.**",
                });

                var videoGameSystems = context.Categories.Local.Single(x => x.Name == "Video Game Systems");

                context.Auctions.Add(new Auction
                {
                    Categories = new[] { videoGameSystems },
                    Title = "Xbox 360 Elite",
                    Description = "The Xbox 360 Elite gaming system is the ultimate in gaming",
                    Images = new WebsiteImage[] { "~/Content/images/products/xbox360elite.jpg" },
                });

                context.Auctions.Add(new Auction
                {
                    Categories = new[] { videoGameSystems },
                    Title = "Sony PSP Go",
                    Description = "The smallest and mightiest PSP system yet.",
                    Images = new WebsiteImage[] { "~/Content/images/products/psp.jpg" },
                });

                context.Auctions.Add(new Auction
                {
                    Categories = new[] { videoGameSystems },
                    Title = "Xbox 360 Kinect Sensor with Game Bundle",
                    Description = "You are the controller with Kinect for Xbox 360!",
                    Images = new WebsiteImage[] { "~/Content/images/products/kinect.jpg" },
                });

                context.Auctions.Add(new Auction
                {
                    Categories = new[] { videoGameSystems },
                    Title = "Sony Playstation 3 120GB Slim Console",
                    Description = "The fourth generation of hardware released for the PlayStation 3 entertainment platform, the PlayStation 3 120GB system is the next stage in the evolution of Sony's console gaming powerhouse.",
                    Images = new WebsiteImage[] { "~/Content/images/products/ps3.jpg" },
                });

                context.Auctions.Add(new Auction
                {
                    Categories = new[] { videoGameSystems },
                    Title = "Nintendo Wii Console Black",
                    Description = "Wii Sports Resort takes the inclusive, fun and intuitive controls of the original Wii Sports to the next level, introducing a whole new set of entertaining and physically immersive activities.",
                    Images = new WebsiteImage[] { "~/Content/images/products/wii.jpg" },
                });

                var sports = context.Categories.Local.Single(x => x.Name == "Sporting Goods");

                context.Auctions.Add(new Auction
                {
                    Categories = new Collection<Category> { sports },
                    Title = "Burton Mayhem snow board",
                    Description = "Burton Mayhem snow board: 159cm wide",
                    Images = new WebsiteImage[] { "~/Content/images/products/burtonMayhem.jpg" },
                });

                var collectibles = context.Categories.Local.Single(x => x.Name == "Collectibles");

                context.Auctions.Add(new Auction
                {
                    Categories = new Collection<Category> { collectibles },
                    Title = "Lock of John Lennon's hair",
                    Description = "Lock of John Lennon's hair",
                    Images = new WebsiteImage[] { "~/Content/images/products/lockOfHair.jpg" },
                });

                int featured = 0;
                var users = context.Users.Local.ToArray();

                foreach (var auction in context.Auctions.Local)
                {
                    auction.StartTime = DateTime.UtcNow
                        .AddDays(rand.Next(-10, -1))
                        .AddHours(rand.Next(1, 24))
                        .AddHours(rand.Next(1, 60));

                    auction.EndTime = auction.StartTime.AddDays(rand.Next(3, 14));
                    auction.Owner = users[rand.Next(users.Length)];
                    auction.CurrentPrice = "$" + rand.Next(1, 100);

                    if (featured++ < 3)
                        auction.FeatureAuction();
                }
            }