Tagged Questions

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

14
votes
1answer
2k views

Fetch vs FetchMany in NHibernate Linq provider

NHibernate eager loading can be done using Fetch and FetchMany, as described here http://mikehadlow.blogspot.com/2010/08/nhibernate-linq-eager-fetching.html What is the difference between these two ...
13
votes
4answers
4k views

Eager loading child collection with NHibernate

I want to load root entities and eager load all it's child collection and aggregate members. Have been trying to use the SetFetchMode in FluentNHibernate, but are getting duplicates in one of the ...
11
votes
1answer
1k views

EF CTP5 - Strongly-Typed Eager Loading - How to Include Nested Navigational Properties?

Attempting to cutover our EF4 solution to EF CTP5, and ran into a problem. Here's the relevant portion of the model: The pertinent relationship: - A single County has many Cities - A single City ...
10
votes
1answer
747 views

Using Include() with inherited entities problem

In EF eager loading related entities is easy. But I'm having difficulties including inherited entities when loading data using table-per-type model. This is my model: Entities: ArticleBase (base ...
9
votes
1answer
889 views

Fighting cartesian product (x-join) when using NHibernate 3.0.0

I'm bad at math but I kind get idea what cartesian product is. Here is my situation (simplified): public class Project{ public IList<Partner> Partners{get;set;} } public class Partner{ public ...
9
votes
2answers
1k views

Disable all lazy loading or force eager loading for a LINQ context

I have a document generator which contains queries for about 200 items at the moment but will likely be upwards of 500 when complete. I've recently noticed that some of the mappings denote lazy ...
6
votes
1answer
359 views

How do you deal with Linq to NHibernate's Fetch exception when selecting aggregates?

I'm using LINQ to NHibernate's IQueryable implementation on a asp.net mvc Grid (telerik specifically), where I know I'll need to fetch something eagerly for this particular grid. So I have query that ...
6
votes
4answers
824 views

Eager loading and repository pattern

I'm wondering how to properly handle eager-loading problem for complex object graphs when using Repository pattern. This isn't ORM specific problem i guess. First try: public interface ...
5
votes
1answer
392 views

NHibernate: How to perform eager subselect fetching of many children & grandchildren (object graph) in a single round-trip to the database?

First, please don't try to argue me out of doing the eager load - traversing the object graph and causing (by lazy loading) even more than ONE round-trip to the database is just not an option. I have ...
5
votes
3answers
286 views

nhibernate, eager loading and paging

I am creating an mvc application that uses nhibernate and paging. I have a parent > child relationship that I am trying to eager load my child records. This is all working fine. The problem I am ...
5
votes
2answers
2k views

EF: Lazy loading, eager loading, and “enumerating the enumerable”

I find I'm confused about lazy loading, etc. First, are these two statements equivalent: (1) Lazy loading: _flaggedDates = context.FlaggedDates.Include("scheduledSchools") .Include ...
5
votes
1answer
740 views

Rails add custom eager load

I have a number of custom find_by_sql queries in Rails. I would like to use eager loading with them but there doesn't seem to be a good way to do this. I have seen the eager_custom.rb file floating ...
4
votes
1answer
915 views

Problem with Eager Loading Nested Navigation Based on Abstract Entity (EF CTP5)

I a portion of my EF model that looks like this: Summary: Location has many Posts Post is an abstract class Discussion derives from Post Discussions have many Comments Now, the query i'm trying ...
4
votes
1answer
1k views

Include() in EF4 using RIA Services Domain Service not loading!

I am having trouble returning multiple entities (eager loading) using the Include() method. I am trying to load the entites in a silverlight application using RIA services. The Data Model consists ...
4
votes
3answers
308 views

Good behaviour for eager loading multiple siblings and grandchildren (cousins?) in NHibernate 3.0 Linq

I'm trying to do the following with NHibernate 3.0's LINQ interface. I want to query for an object (using some Where clause), and load some children and grandchildren. Currently I'm doing it like so: ...
4
votes
2answers
346 views

Using eager loading with specification pattern

I've implemented the specification pattern with Linq as outlined here https://www.packtpub.com/article/nhibernate-3-using-linq-specifications-data-access-layer I now want to add the ability to eager ...
4
votes
1answer
1k views

EF4 LINQ Ordering Parent and all child collections with Eager Loading (.Include())

I am doing hierarchical data binding on a grid, and I need to have the database server perform the sorting on my objects. I can easily sort the parent collection, but I can't seem to figure out how ...
4
votes
4answers
3k views

Eager Loading Using Fluent NHibernate/Nhibernate & Automapping

I have a requirement to load a complex object called Node...well its not that complex...it looks like follows:- A Node has a reference to EntityType which has a one to many with Property which in ...
4
votes
1answer
2k views

Ruby on Rails: :include on a polymorphic association with submodels

When working with a polymorphic association, is it possible to run an include on submodels that are only present in some types? Example: class Container belongs_to :contents, :polymorphic => ...
4
votes
2answers
1k views

Rails Eager Loading on All Finds

OK, I've been playing around with some of the eager loading things, and have 2 models something like: Class Recipe < ActiveRecord::Base belongs_to :cookbook has_many :recipetags end ...
4
votes
1answer
1k views

Eager loading child and child-of-child collections in NHibernate

I've got a problem with NHibernate trying to load a small hierarchy of data. My domain model looks like: class GrandParent { int ID{get;set;} IList<Parent> Parents {get; set;} } class ...
4
votes
3answers
2k views

Eager loading of Linq to SQL Entities in a self referencing table

I have 2 related Linq to SQL questions. Please see the image below to see what my Model looks like. Question 1 I am trying to figure how to eager load the User.AddedByUser field on my User ...
3
votes
2answers
108 views

Linq to NHibernate - eager load grandchildren but not children

I am using NHibernate 3.2 with FluentNHibernate and Linq to NHibernate. I want use Linq to NHibernate to eager load all of the grandchildren of a collection without having to load the children. For ...
3
votes
2answers
208 views

Rails 3 Eager Loading with conditions - how to access eager loaded data?

I have a lot of cases in my app where a user has no more than one object (say, a "Description") within its association to another object (a "Group"). For example: class User < ActiveRecord::Base ...
3
votes
2answers
104 views

Rails 3 Limiting Included Objects

For example I have a blog object, and that blog has many posts. I want to do eager loading of say the first blog object and include say the first 10 posts of it. Currently I would do @blogs = ...
3
votes
1answer
291 views

Rails: Structuring a query involving a polymorphic association and STI

I'm trying to find the 10 most recent comments on photos so I can integrate them into an activity feed on my Rails 3.0.3 application. I've got a Photo model, which inherits from an Upload model using ...
3
votes
1answer
391 views

Entity Framework 4.1 - TPT Eager Loading - “The ResultType of the specified expression is not compatible with the required type”

I have a model with TPT inheritance. Location (abstract) Street (derived from Location) GoogleStreetView (1 Street -> 0..1 GoogleStreetView) Each of the above has it's own table. All was working ...
3
votes
1answer
813 views

Entity Framework 4.1 default eager loading

I'm using Entity Framework 4.1 code first approach. I want to make eager loading as my the dafault configuration, and by that avoid using the Include extension method in each fetching query. I did ...
3
votes
1answer
63 views

Does :include work on ActiveRecord instances?

All the examples of :include for eager loading are for class-level querying. I tried it on my model instance and it still issued a bunch of queries - does it work on instance methods? #in controller ...
3
votes
1answer
245 views

EF4 and undesired loading of related collection with AddObject

I have an odd case where adding a record is causing unwanted loading of a related collection. For example, I have Requests and Sessions. A Session can contain many Requests. I already have loaded ...
3
votes
1answer
266 views

EF Code first Eager loading problem

I have two entities in 1:n relationship: Category and Product. public class Category { public int CategoryID { get; set; } public string CategoryName { get; set; } public virtual ...
3
votes
2answers
264 views

Completing object with its relations and avoiding unnecessary queries in sqlalchemy

I have some database structure; as most of it is irrelevant for us, i'll describe just some relevant pieces. Let's lake Item object as example: items_table = Table("invtypes", gdata_meta, ...
3
votes
1answer
331 views

Eager fetching of a great-grandchild collection using a Stateless Session via NHibernate

I'm using an NHibernate Stateless Session to load bulk data into the database. As data is loaded, later entities need to lookup previous entities in order to add them to child collections. This ...
3
votes
1answer
317 views

How select referenced entity in nhibernate queryover

I Have a entity with a property referencing other entity (ReferenceEntity in examples). With HQL i can do this: select e.ReferenceEntity from Entity e where e.Id = :entityId NHibernate will give ...
3
votes
2answers
440 views

How do I get Rails to eager load counts?

This is related to a question a year and change ago. I put up an example of the question that should work out of the box, provided you have sqlite3 available: ...
3
votes
3answers
445 views

How do I wrap Linq2NHibernate's .Fetch and .ThenFetch inside my abstract repository?

I'm using a generic repository that exposes an IQueryable<T> like this: public IQueryable<T> AllEntities { get { return session.Query<T>(); } } I can query ...
3
votes
1answer
219 views

Can SQLAlchemy eager/joined loads be suppressed once set up?

I've got a case where most of the time the relationships between objects was such that pre-configuring an eager (joined) load on the relationship made sense. However now I've got a situation where I ...
3
votes
2answers
565 views

Eager Loading in .Net4 Link-to-EF; maybe like DataLoadOptions

I am using VS2010 .Net4 Linq-to-EntityFramework and would like to explicitly eager load some child data. I would like to provide functionality similar to that of DataLoadOptions or LoadWith which are ...
3
votes
1answer
517 views

Entity Framework 4 Abstract Model - How to Programatically Eager-Load Navigational Properties?

I have an EF4 Model that is built with abstract entities/classes: Notice how State entity has a navigational property called Country. Note: I have lazy-loading disabled, so i must eager-load on ...
3
votes
4answers
2k views

Force eager loading of otherwise lazy loaded properties

I've got a Hibernate object which's properties are all loaded lazy. Most of these properties are other Hibernate objects or PersistentSets. Now I want to force Hibernate to eager load these ...
3
votes
1answer
353 views

NHibernate Eager Loading Collections + Paging

Here is an example of my entities that I am trying to return with eager loaded collections. Mixes -> Tracks (collection) -> Tags (collection) I need to return a paged list of Mixes with eager ...
3
votes
2answers
1k views

Eager loading a tree in NHibernate

I have a problem trying to load a tree, this is my case, I have an entity associated with itself (Hierarchic) with n levels; the question is, Can I load eagerly the entire tree using ICriteria or HQL? ...
3
votes
4answers
831 views

How to Determine if Rails Association is Eager Loaded?

Does anyone know a way to determine if a Rails association has been eager loaded? My situation: I have a result set where sometimes one of the associations is eager loaded, and sometimes it isn't. ...
3
votes
0answers
444 views

Strategic Eager Loading for many-to-many relations in Datamapper?

I'm using DataMapper, an open source ORM for ruby, and I have in itch I would like to scratch. At the moment, DataMapper can use Strategic Eager Loading(SEL) for one-to-many relationships, but not ...
3
votes
4answers
420 views

Why lazy instantiation of the MessageResourcesFactory in Struts 1.2.7?

Since there is the Double-checked locking issue so we have to use synchronization to guarantee the concurrent access to the following method (org.apache.struts.util.MessageResources class) : LAZY ...
3
votes
2answers
1k views

LINQ to SQL eager loading with conditions

I'm trying to learn LINQ to SQL and i've found out about the LoadWith function. All the examples i've found will load all records from the table you specify in the LoadWith function e.g. var dlo = ...
2
votes
2answers
115 views

How can I convert IQueryable<T> to ObjectQuery<T>?

I'm trying to apply the advice in this post: Tip 22 - How to make Include really Include It suggests a workaround for ensure eager loading works in the Entity Framework (4.2). That workaround ...
2
votes
2answers
176 views

Eager loading a tree with nHibernate re-queries leaf nodes

Looking for some expertise before I declare the NHibernate framework broken or myself crazy! I'm trying to eagerly load a self-referencing tree with NHibernate and can successfully load most ...
2
votes
1answer
62 views

Eager load Many to Many in EF4 using expressions?

I have two Entities: GrmDeploymentAttempt and GrmDeploymentStep. These entities have a many to many relationship through an intermediary POCO GrmDeploymentAttemptStep, which has additional ...
2
votes
1answer
99 views

Load parent and its child records in single LINQ statement

I know this could easily be done in two hits to the database, but I've been experimenting with a single LINQ statement to load an order by ID and it's order items, translating them to ViewModel ...

1 2 3 4 5