Beispiel #1
0
        static void Main(string[] args)
        {
            CervejaContext cerveja = new CervejaContext();

            cerveja.Cervejas.Add(new Cerveja()
            {
                Nome = "Daniel Cerveja"
            });
            cerveja.SaveChanges();
        }
 public CervejaRepository()
 {
     _context = new CervejaContext();
 }