1
0
mirror of synced 2024-12-14 23:26:04 +03:00
doctrine2/manual/codes/Basic Components - Query - Lazy property fetching.php
2006-07-23 21:08:06 +00:00

7 lines
134 B
PHP

<?php
// retrieve all users with only their properties id and name loaded
$users = $session->query("FROM User(id, name)");
?>