Tagged Questions

3
votes
3answers
65 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 int …
3
votes
4answers
90 views

Why lazy instantiation of the MessageResourcesFactory in Struts 1.2.7?

Hi, 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.MessageRes …
3
votes
3answers
347 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 duplicat …
2
votes
2answers
166 views

Eager Loading with Many-to-Many relationship - Grails (GORM)

Each book can have many authors. And each author can author many books. class Book { static belongsTo = Author static hasMany = [authors:Author] } class Author { static …
2
votes
3answers
299 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 …
1
vote
1answer
27 views

Why is ToLookup() dependent on load options in Linq2Sql?

Lets say I have 3 tables Posts, PostTags and Tags defining a many-to-many relationship. I want to get a lookup table that will give me all the Posts related to a given tag so I use …
1
vote
2answers
83 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 …
1
vote
1answer
99 views

Eager loading vs. many queries with PHP, SQLite

I have an application that has an n+1 query problem, but when I implemented a way to load the data eagerly, I found absolutely no performance gain. I do use an identity map, so obj …
1
vote
2answers
149 views

Rails: How do I minimize DB hits here? Eager loading isn’t applicable

Hi, this question is maybe a little specific, but I think it's interesting from a general pov also. In a Rails App users can subscribe to other users. When I show a list of users …
1
vote
1answer
108 views

Eager Loading aggregate roots with Entity Framework

I would like to create a more structured approach to loading the needed entity-tree: I need a serious amount of data, so I'm doing this using type-safe Includes (just a normal Inc …
1
vote
2answers
354 views

LINQ to Entity Framework Eager Loading issue

I have the following query: var MyQuery = from e in ContractContext.Equipments.Include("Manufacturers") where e.Customers.ID == customer.ID select e; …
1
vote
2answers
76 views

Updating eager-loaded associations in memory

In my current rails app I'm pulling a lot of data from the database into memory so that I can start a long-running background task that I don't want to hit the database every 5 sec …
1
vote
2answers
260 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 functio …
0
votes
1answer
27 views

How can I do this Eager Loading (using the .Include() method) in this code?

Hi folks, I have a very simple repository I'm playing around with, using Entity Framework v4 that comes with VS2010 Beta 2. I'm trying to dynamically include the Include method, …
0
votes
1answer
32 views

How to do the opposite of eager-loading in Entity Framework?

I understand in Entity Framework you can specify relationships that need to be joined with Include: Product firstProduct = db.Product.Include("OrderDetail").Include("Suppl …

1 2 next
15 30 50 per page