Beispiel #1
0
 private static void CreateBooks()
 {
     using (var context = new BooksContext())
     {
         bool created = context.Database.EnsureCreated();
         Console.WriteLine($"{created} database");
         context.Books.Add(new Book { Title = "Professional C# 6", Publisher = "Wrox Press" });
         int records = context.SaveChanges();
         Console.WriteLine($"{records} changed");
     }
 }
 public BooksService(BooksContext context)
 {
     _context = context;
 }