Eager loading is a way to load objects of a certain class and a number of named associations in the same request.
Attempting to cutover our EF4 solution to EF CTP5, and ran into a problem. Here's the relevant portion of the …
entity-framework poco eager-loading entity-framework-ctp5I'm using Entity Framework 4.1 code first approach. I want to make eager loading as my the dafault configuration, and by …
entity-framework entity-framework-4.1 eager-loading<?php class Cat extends Eloquent { public function user() { return $this->belongsTo('User'); } } class User extends Eloquent { public function …
php join laravel-4 eloquent eager-loadingI found several times people asking for the same question but it seems that the answer was never satisfying altough …
entity-framework linq-to-entities one-to-many eager-loading entitycollectionI have two tables, say "users" and "users_actions", where "users_actions" has an hasMany relation with users: users id | …
php laravel-5 eloquent greatest-n-per-group eager-loadingBackground I have a rails application with deeply nested associations. .-< WorkPeriod Timecard -< Week -< Day …
ruby-on-rails performance associations eager-loading active-model-serializersI have a document generator which contains queries for about 200 items at the moment but will likely be upwards of 500 …
c# linq linq-to-sql lazy-loading eager-loading