1
0
mirror of synced 2024-12-15 23:56:02 +03:00
doctrine2/manual/codes/Working with objects - Component overview - Query - Lazy property fetching.php
2007-02-23 20:57:38 +00:00

7 lines
131 B
PHP

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