Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

26
votes
3answers
6k views

Linq for NHibernate and fetch mode of eager loading

Is there a way to set the fetchmode to eager for more than one object using linq for nhibernate. There seems to be an expand method which only allows me to set one object. However I need to set it for ...
7
votes
1answer
6k views

Ways to avoid eager spool operations on SQL Server

I have an ETL process that involves a stored procedure that makes heavy use of SELECT INTO statements (minimally logged and therefore faster as they generate less log traffic). Of the batch of work ...
3
votes
1answer
106 views

Eager versus Lazy Haskell. Infinite lists possible in Eager languages?

Apparently it is possible to implement Haskell such that it evaluates eagerly without changing the semantics of the language at all. If that is true, how are infinite data structures handled? ...
3
votes
1answer
509 views

Entity Framework 4 POCO - Lazy + Eager Loading

I have the following DB structure (simplified version): Comments - CommentId, UserId Users - UserId UserDetails - UserId, Address, Phone, etc. I am using EF 4 with POCOs. The User property of the ...
3
votes
1answer
2k views

Hibernate: Overriding mapping's EAGER in HQL?

It's possible to override LAZY in HQL using LEFT JOIN FETCH. FROM Obj AS obj LEFT JOIN FETCH obj.otherObj WHERE obj.id = :id Is it also possible to override EAGER? How?
3
votes
7answers
646 views

When is lazy evaluation not useful?

Delay execution is almost always a boon. But then there are cases when it’s a problem and you resort to “fetch” (in Nhibernate) to eager fetch it. Do you know practical situations when lazy ...
2
votes
0answers
40 views

Is there a Grails plugin for detecting N+1 fetching (similar to the Rails bullet gem)?

I recently learned about the Rails "bullet" gem that addresses the N+1 problem and determines when your app should or should not use eager fetching. Apparently it checks at runtime on the occurrence ...
2
votes
1answer
94 views

Why am I getting a cast error when trying to use Simpson's rule in Clojure?

I'm trying to work through some of the exercises in SICP using Clojure, but am getting an error with my current method of executing Simpson's rule (ex. 1-29). Does this have to do with lazy/eager ...
2
votes
1answer
448 views

How do I disable “eager” validation entirely using jquery validate?

Is there a way to disable "eager" validation using the jquery.validate plugin? Either through an option in the script or as a hack? "Eager" validation kicks in once the form has been validated once - ...
2
votes
6answers
358 views

eagerly evaluating boolean expressions in Python

Is there a way (using eval or whatever) to evaluate eagerly boolean expressions in python? Let's see this: >>> x = 3 >>> 5 < x < y False Yikes! That's very nice, because ...
2
votes
1answer
713 views

How to Eager Load entire SQL table in LINQ?

Writing my first Linq application, and I'm trying to find the best way to do the following: I want to load the entire employees table at once to populate the cache (used for form autocomplete). I ...
1
vote
1answer
30 views

Rails + UUID + Eager loading

I have 2 models in my rails app, one with an UUID primary key : class User < ActiveRecord::Base belongs_to :country, :foreign_key => 'country_uuid' end class Country < ActiveRecord::Base ...
1
vote
2answers
59 views

JPA use fetch join or EAGER

I have a Class A which has one-to-many relationship with class B & C. I had set the fetchType to EAGER which causes the multiple bag fetch problem in JPA. Now there are two ways to solve the ...
1
vote
3answers
177 views

Flex-Cairngorm/Hibernate - Is EAGER fetching strategy pointless?

I will try to be as concise as possible. I'm using Flex/Hibernate technologies for my app. I also use Cairngorm micro-architecture for Flex. Because i'm beginner, i have probably misunderstand ...
1
vote
3answers
94 views

How can I run the initialization code for a generator function immediately, rather than at the first call?

I have a generator function that goes something like this: def mygenerator(): next_value = compute_first_value() while next_value != terminating_value: yield next_value I would like ...
1
vote
2answers
384 views

Rails eager loading and kaminari

How to use eager loading while paginating with kaminari? I know that kaminari needs Relation object to work, how to retrieve models with :include and return Relation object? And second question, why ...
1
vote
2answers
291 views

F# lazy eval from stream reader?

I'm running into a bug in my code that makes me think that I don't really understand some of the details about F# and lazy evaluation. I know that F# evaluates eagerly and therefore am somewhat ...
1
vote
1answer
886 views

How do you programmatically turn off eager fetching with hibernate?

I have in my mapping an association to an eagerly loaded collection (lazy="false" fetch="subselect"). How can I turn that off programmatically with Hibernate when I do a query? Thanks
1
vote
1answer
362 views

Is it possible to eager load over two one-to-many relationships in NHibernate?

Given an object hierarchy such as the following: class Category { List<SubCategory> SubCategories; } class SubCategory { List<Product> Products; } class Product { } Is it ...
0
votes
1answer
208 views

Guice eager/lazy singleton instantiations

I'm having some troubles understanding how Guice's singleton instantiations works. I've read the available documentation (here - http://code.google.com/p/google-guice/wiki/Scopes ), but I still can't ...
0
votes
1answer
109 views

Eager loading of multiple related entities

I need to add an extension method that can handle multiple Include to an already existing Repository class: public abstract class Repository<TEntity, TPrimaryKey> : IRepository<TEntity, ...
0
votes
1answer
64 views

HQL / Nested Eager Loading

I am wondering what the best way is to load nested values for lazy loaded objects. I'm providing an example to help explain this better. public class A{ private B b; //Lazy loaded private C ...
0
votes
0answers
231 views

FetchType.Eager is unable to fetch, FetchType.LAZY is also not working

Hi I've made two entity classes named Designaton.java and Module.java. In Designation class there is a toMany relationship. I tried to Fetch data using FetchType.EAGEr as well as FetchType.LAZY also, ...
0
votes
1answer
102 views

Fluent NHibernate Linq Complex Component Eager Loading

We are using Fluent NHibernate LINQ in our project with legacy database. Our scenarios is, we have a table with Customer information with address. We have created Customer and Address as separate ...
0
votes
2answers
738 views

Grails GORM Domain class relationship

Grails 1.1.1 Goovy 1.5.7 In a relationship such this: Author 1 -- n Book n -- 1 Publisher Defined in Grails: class Author { String firstName String lastName static hasMany = [books: ...