on Ruby_on-Rails , Eager loading is a way to find objects of a certain class and a number of named associations

learn more… | top users | synonyms

0
votes
1answer
18 views

Eager load grandchild attribute without child in rails

In Rails, I'm trying to eager load something to speed it up. I've got a Parent-Child-Grandchild situation, but only need the Parent and an attribute of the Grandchild. If I... ...
0
votes
1answer
64 views

Laravel Eager Loading

OK, here's my code: my relationships from my model // message model public function profile() { return $this->has_one('Profile', 'id'); } // profile model public function ...
1
vote
1answer
27 views

Rails - Eager Load Association on an Association

EDIT - Using 'includes' generates a SQL 'IN' clause. When using Oracle this has a 1,000 item limit. It will not work for my company. Are there any other solutions out there? Is it possible to ...
1
vote
3answers
71 views

virtual keyword, Include extension method, lazy loading, eager loading - how does loading related objects actually work

Loading related object in MVC can be pretty confusing. There are lots of terms you need to be aware of and learn if you really want to know what you're doing when writing your entity model classes ...
0
votes
2answers
61 views

Is there a cleaner, more Grailsy way to write this query?

I have a couple scenarios where I want to retrieve a single Advertiser and eager fetch most of its object graph. I definitely don't want to do this by default, so I've been searching for the right way ...
0
votes
2answers
128 views

Laravel 4 eloquent - Getting the id of self based on constraints of parents

I need to get the id of a row based on the constraints of the parents. I would like to do this using eloquent and keep it elegant. Some things to note when this process starts: I have - country_code(2 ...
0
votes
0answers
24 views

Performance Comparison - Domain Model + Eager Loading or Lazy Loading?

Ive looked in many places online and Martin Fowlers book but I cant seem to find a straight answer about the performance for the Domain Model pattern and Eager Loading vs Lazy Loading. I have used ...
0
votes
1answer
32 views

ActiveRecord - How to join association with pure SQL query

I'm doing the following query: TaskCheck.find_by_sql ["SELECT task_checks.*, tasks.* FROM task_checks INNER JOIN tasks ON task_checks.task_id = tasks.id"] It returns TaskCheck objects but when I ...
0
votes
0answers
16 views

undefined method `eager_load' for Mongoid::Relations::Embedded::In:Class

I getting an error using rails with mongoid. undefined method `eager_load' for Mongoid::Relations::Embedded::In:Class I have enabled the identity map in the config file identity_map_enabled: true ...
0
votes
0answers
17 views

EF - How to set eager loading

I have 1:N relation - ObjectA has n ObjectB's. I have loaded ObjectB to memory. using context.Configuration.LazyLoadingEnabled = true; I can get the objectA when I have objectB - and I ...
0
votes
1answer
38 views

entity framework - navigation property does not load

I have the following relation public partial class SharedResource : DomainEntity { public System.Guid Id { get; set; } public System.Guid VersionId { get; set; } public virtual ...
0
votes
1answer
188 views

Eager Loading from the model in Laravel 4

In Laravel 3, one could do the following in the model (http://laravel.com/docs/database/eloquent#eager): class Book extends Eloquent { public $includes = array('author'); // this line ...
0
votes
2answers
155 views

Mass/Bulk SQL server updates

Code foreach (var item in _context.Duiven. .Include(p => p.Duivenmelker.VoedselInstelling) .Include(p => p.VoedselHistoriek) .Include(p => ...
1
vote
1answer
73 views

How to eager load in this case?

class Model RunningTracks < ActiveRecord::Base has_many :achievements has_many :runners, through: :achievements class Model Runner < ActiveRecord::Base has_many :achievements has_many ...
0
votes
1answer
14 views

Rails .joins doesn't load the association

Helo, My query: @county = County.joins(:state) .where("counties.slug = ? AND states.slug = ?", params[:county_slug]) .select('states.*, counties.*') .first! From the ...
1
vote
0answers
37 views

ActiveSupport::Dependencies.autoload_paths: How to eager load?

I'm using ActiveSupport in a sinatra project, and following the advice of some peers I've been using ActiveSupport::Dependencies.autoload_paths to ease the loading of my classes in development. Now ...
1
vote
1answer
66 views

MVC displaying related child entities in view

I am trying to build a view in an MVC 4 app that will show a domain model and all the data from it's related child entities as well but for some reason, I cannot access the childrens' properties in ...
0
votes
1answer
44 views

Rails Eager Loading and where clause

I'm eager loading a model object with its associations: user= User.includes(:posts).find(1) But then at certain points in the code I would like to do something like this: user.posts.where(:topic ...
0
votes
1answer
70 views

GORM Eagerly Fetch Collection With Criteria

I have a simple one-to-many association: class Foo { int id Date someDate static hasMany = [ bars: Bar ] } class Bar { Foo foo Date someDate static mapping = { ...
0
votes
0answers
20 views

Crazy NoMethodError's on hot restart of Rails app

I'm running a multithreaded JRuby on Rails app with Trinidad with config.threadsafe!, but every time I hot restart under load I get crazy NoMethodErrors (It may also happen on normal startup, I just ...
1
vote
0answers
29 views

Rails eager loading with customized query

I am building an RSS reader which has the following model: class Folder < ActiveRecord::Base attr_accessible :name, :user_id, :is_expanded has_many :feeds end class Feed < ...
0
votes
0answers
47 views

Rolify mongoid remove_role

I use rolify with mongoid to persist roles for users. If I want to add a role to user I just do it by add_role(:role) but if I want to remove role, I try to remove_role(:role) that doesn't do ...
1
vote
0answers
62 views

Rails 3.2.11 asset precompile fails if threadsafe! enabled

I'm on Rails 3.2.11 and ruby 1.9.3.125 My app is working ok in devel and production if threadsafe! off With threadsafe! enabled I get an error during precompiling, in my asset assetsolutions.js.erb ...
0
votes
2answers
65 views

EF nested tables eager loading?

My table relations: Categories has many Posts has many PostImages I want to retrieve Categories>LastPost>FirstPostImage. And I tried something like following: var categories = entity.Categories ...
0
votes
1answer
64 views

Rails eager load association with selected attributes

Can anyone tell me if it's possible to eager load an association but only return specific attributes? I'd like to retrieve some orders with their accounts but only require the account names. ...
1
vote
1answer
145 views

Entity Framework code first - Many to Many - Include conditional

I have two Entities Store and Catalog, having many to many relationship using fluent Api. I want to get a Store by id with all the catalogs having status equals to "Published". Below I try to write ...
3
votes
1answer
86 views

Abstract class not loaded properly in Rails

Here's my class hierarchy: In my Item model, I have something like: class Item < ActiveRecord::Base TYPES = [Weapon::TYPES, Armour::TYPES, Misc::TYPES].flatten.freeze end And then, the ...
0
votes
1answer
34 views

Navigating through relations on two paths in schema

From top to bottom I have the belongs_to relationship between my tables , and well has_many from the other direction. ReportTarget Report Manager Organization and Score Manager Organization so ...
0
votes
1answer
25 views

Navigating through relations for more than two level deep

From top to bottom I have the belongs_to relationship between my table , and well has_many from the other direction. ReportTarget Report Manager Organization I want to do an eager load on these. I ...
0
votes
0answers
48 views

MVC: Avoid lots of queries in views

I'm actually programming in rails. I have a complex CMS-CRM-Ecommerce application that makes a lot of filters and queries in views (10-15 used models avg. per page) For example, for each product in ...
2
votes
2answers
62 views

Optimize eager loading in Rails

Rails 3.2. I have the following: # city.rb class City < ActiveRecord::Base has_many :zones, :dependent => :destroy end # zone.rb class Zone < ActiveRecord::Base belongs_to :city ...
0
votes
1answer
44 views

LinqToSql: stop eager loading

Having set the following options to eager load a customer's orders: DataLoadOptions dlo = new DataLoadOptions(); dlo.LoadWith<Customer>(c => c.Orders); db.LoadOptions = dlo; How would I ...
0
votes
0answers
38 views

Code First Eager Load doesn't generate the expected SQL result

We're using Devforce as our ORM and Devforce is using Entity Framework on top of it. We have a weird issue that occurs just on one of our server machine and it's sporadic. I have a post on some of ...
0
votes
2answers
272 views

I have the FetchType.LAZY and hibernate objects are still loaded

I have this relation in my "Persona" entity @OneToOne(cascade = CascadeType.ALL, fetch = FetchType.EAGER, mappedBy = "persona") private Empleado empleado; In my "Empleado" entity i have this ...
0
votes
1answer
54 views

How do you eager load data via Alias in Fetch method?

Ok so I have the following relationships: Bulletin < BulletinEmailLog < BulletinEmailLogRecipient - Contact - Entity Where the "<" stands for 1 to many and the "-" is one to one. And here ...
1
vote
1answer
45 views

Eager loading fetches all fields though select is explicitly specified

I have a query like this, company.users.select("users.id, users.state").includes(:organization) here I'm eager loading the association organization. I was expecting the attributes id and user_id ...
0
votes
1answer
122 views

Eagerly loading multiple levels with EF 5, .NET 4.5 and Linq

I have a data structure that contains countries, each country can contain multiple tournaments, each tournament can contain multiple matches, each match has 2 teams (home team and away team). The ...
0
votes
0answers
149 views

Rails has_one polymorphic association eager loading picks wrong object_type

I have a model called SocialComment which is polymorphic and accepts users and admins as sociable. Each user has one user_asset as their avatar which again is connected through a polymorphic ...
0
votes
1answer
59 views

Making serializable_hash eager load [closed]

I have a function, Appointment#serializable_hash, that looks like this: def serializable_hash(options={}) options = { :methods => %w( notes client services ...
2
votes
1answer
130 views

How to eager load a collection in ebean?

What is the correct way to eager fetch a nested collection in ebean and Play Framework 2? I tried this: Registration registration = find .fetch("participants") ...
1
vote
1answer
161 views

Entity Framework 4.1 Eager Loading on complext object

In a current MVC4.0 project I am using Entity Framework 4.1 Database first model. Part of this structure includes the following tables compGroupData SurveyData SecondaryData compGroupData ...
1
vote
2answers
322 views

Eager-load the whole object-graph at runtime in Hibernate

Please read on before saying anything along the lines of "specify the fetch type in the query". That's not what I'm after. I'm looking for a way to eager-load a complete object-graph (the object + ...
1
vote
1answer
361 views

Laravel Eager Loading missing relationships when chained with first()/all()

Using L3 the following works fine : $r = Site::with('services')->get() That returns exactly what I'd expect. An array of Site objects, with the services relationship all neatly populated. ...
0
votes
1answer
53 views

Opposite of includes in Rails

Assuming I have #post.rb class Post < ActiveRecord::Base default_scope includes(:user) what do I do when I don't want to include the user when I fetch a post? for instance, when I delete a ...
2
votes
1answer
87 views

Rails 3 association eager load vs opposite association

I have associated models like this: class Batch has_many :logs class Log belongs_to :batch I'm using includes to load batches with logs: b = Batch.includes(:logs) Which runs 2 selects as ...
0
votes
1answer
46 views

How to always include a model for eager loading

I use the bullet gem to let me know of N+1 queries. I want to avoid adding include sporadically. I have a comment model which belongs to a user model Is there a way to tell the model that anytime a ...
0
votes
1answer
120 views

Load navigation property explicitly

public class MyDbContext: DbContext { } public class Product { public long Id {get; set;} public long CategoryId {get; set;} [ForeignKey("CategoryId")] public virtual Category Category ...
0
votes
1answer
41 views

How to Eager Load (Two-Level Ppward)?

The models look like this: Customer (Model) - Order (Model) -- Product (Model) --- Color (Model) - Name (Property) When listing the details of Product, I want to show the Name of Customer (Name is a ...
0
votes
2answers
132 views

Preload associations with an existing scope

I wrote a piece of code to eager load some associations from an already loaded collection: @articles= Article.find_by_sql("SELECT * FROM articles WHERE blabla") ...
3
votes
1answer
55 views

How to determine the associations for eager loading

I'm working on rails 3.2 and would like to implement eager loading for my pages. My model is associated with many other models and want to know how to determine the associations which I need to add ...

1 2 3 4 5 8