Пример #1
0
        public static void Initialize(FootballersContext context)
        {
            if (!context.Footballers.Any())
            {
                context.Footballers.Add(new Models.Footballers
                {
                    FirstName = "Эдуард",
                    LastName  = "Стрельцов",
                    Gender    = "Мужской",
                    BirthDate = Convert.ToDateTime("21.07.1937").Date,
                    NameTeam  = "Торпедо",
                    Country   = "Россия"
                });

                context.Footballers.Add(new Models.Footballers
                {
                    FirstName = "Эбби",
                    LastName  = "Уомбак",
                    Gender    = "Женский",
                    BirthDate = Convert.ToDateTime("02.06.1980").Date,
                    NameTeam  = "Washington Freedom",
                    Country   = "США"
                });

                context.SaveChanges();
            }
        }
Пример #2
0
 public HomeController(FootballersContext context)
 {
     FC = context;
 }