Siteadmin uses Doctrine 2 as its internal ORM. All create/update/remove operations are handled through the doctrine entity manager context.
This is just a quick start guide to doctrine's entity manager. Visit the for detailed explanations.
Accessing Entity Manager Context
// Returns doctrine entity manager instance
$entityManager = \sa\application\app::$entityManager
<?php
// Create entity instance
$user = ioc::resolve('User');
// Set fields
$user->setFirstName('John')
->setLastName('Doe');
// Queue changes in entity manager
app::$entityManager->persist($user);
// Commit $user object specific changes
app::$entityManager->flush($user);
// Commit all persisted changes
app::$entityManager->flush();
<?php
// $user is an entity which already exists in the entity manager.
app::$entityManager->remove($user);