Esempio n. 1
0
        public static void Initialize(CORE2Context context)
        {
            context.Database.EnsureCreated();
            if (context.Categoria.Any())
            {
                return;
            }
            var Categoria = new Categoria[] {
                new Categoria {
                    Nombre = "EStilo", Descripcion = "Evalua tu estilo"
                },
                new Categoria {
                    Nombre = "fuerza", Descripcion = "Evalua tu fuerza"
                }
            };

            foreach (Categoria c in Categoria)
            {
                context.Categoria.Add(c);
            }
            context.SaveChanges();
        }
Esempio n. 2
0
 public CategoriasController(CORE2Context context)
 {
     _context = context;
 }