Hi there, I've been using the repository pattern and I was wondering what the return value of DB.Save() should be when you have joining table such as: Customer (PK id) - CustomerOrder (customerID, orderID) - Orders (PK id) If I have the following: CustomerOrder co = new CustomerOrder; co.customerID...