The bottom of p. 152 has these lines:
db.Customers.Add(newCustomer);
db.Customers.Remove(oldCustomer);
But Customers is an object of type Table<T> and that class does not have Add or Remove methods. What is the correct code that illustrates the point being made?