7. T GetObject(object id)

Returns the specified object. It does not load any children for the objects. For that, use GetObjectWithChildren();

Example:

IObjectMapper<Customer> mapper = Elementary.GetIObjectMapper<Customer>();
Customer c = mapper.GetObject(1); // Gets Customer #1

Console.WriteLine(customers[0].Orders); // Orders is not populated