Beispiel #1
0
 private static void PrintList(ItemContext todoList)
 {
     throw new NotImplementedException();
 }
Beispiel #2
0
 public ItemRepository()
 {
     // This is creating a database for something that hasn't been made yet/ making sure it has been created.
     context = new ItemContext();
     context.Database.EnsureCreated();
 }