17. void Save(T object)

Saves the object to the database. Does not save any children. For that, use SaveWithChildren.

Example:

Customer customer = new Customer();
customer.FirstName = "Bill";
customer.LastName = "Gates";

Order order = new Order();
... // set the order information

IObjectMapper<Customer> mapper = Elementary.GetIObjectMapper<Customer>();
mapper.Save(customer); // customer is saved.  customer.Orders is not saved