Site Administrator
Search…
Overview
Getting Started
User Guide
Developer Guide
The Basics
Models & Doctrine ORM
Models
Entity Manager
Repositories
Advanced Topics
Utilities & Helpers
Command Line
Vue Components
Credits
Old Guide
Site Administrator
Powered By
GitBook
Entity Manager
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
official documentation
for detailed explanations.
Accessing Entity Manager Context
// Returns doctrine entity manager instance
$entityManager
=
\
sa
\
application
\
app
::
$entityManager
Create/Update Entity
<?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
();
Remove Entity
<?php
// $user is an entity which already exists in the entity manager.
app
::
$entityManager
->
remove
(
$user
);
Previous
Models
Next
Repositories
Last modified
4yr ago
Copy link
Outline
Accessing Entity Manager Context
Create/Update Entity
Remove Entity