Returns all objects in the database for the specified type. It does not load any children for the objects. For that, use GetCollectionWithChildren();
Example:
IObjectMapper<Customer> mapper = Elementary.GetIObjectMapper<Customer>();
IList<Customer> customers = mapper.GetCollection();
Console.WriteLine(customers[0].Orders); // Orders is null