0
votes
3answers
53 views
When should one avoid using NHibernate’s lazy-loading feature?
Most of what I hear about NHibernate's lazy-loading, is that it's better to use it, than not to use it. It seems like it just makes sense to minimize database access, in an effort …
0
votes
1answer
28 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 …
0
votes
2answers
46 views
On-demand eager loading
Hi guys,
I make a query:
String query = "SELECT DISTINCT a FROM A a FETCH ALL PROPERTIES " +
"JOIN a.Bs AS b " +
"JOIN b.Cs AS c WHERE c = :c";
Query q = DAO.getSession …
2
votes
1answer
83 views
NHibernate creates proxy via session.Load(), but not via Linq or Criteria API
I have an odd problem in my current project. Lazy loading for queries does not work. When I query a list, nhibernate fetches all associations separately.
I extracted small parts o …
1
vote
3answers
71 views
hibernate Lazy loading
my hibernate object A has object B, C, and D as properties :
A.getB().getName();
A.getC().getTitle();
now, I want to load A with all its properties without getting a LazyIniti …
0
votes
3answers
41 views
How to “lazy load” in a RESTful manner?
Given this service to get information about a hotel:
> GET /hotel/{id}
< HTTP/1.1 200 OK
< <hotel>
< <a>aaa</a>
< <b>aaa</b>
> …
0
votes
1answer
47 views
Linq-To-Entities Include
I'm currently learning a bit more about Linq-To-Entities - particularly at the moment about eager and lazy loading.
proxy.User.Include("Role").First(u => u.UserId == userId)
…
0
votes
2answers
36 views
Nhibernate change from lazy=false to fetch=join many-to-many
i have:
<bag name="Categories" table="CMS_Articles_Categories" lazy="true">
<key column="article_id"/>
<many-to-many class="Framework.CMS.Domain.Category, F …
1
vote
1answer
35 views
Is there a helper to know whether a property has been loaded by Hibernate?
I need a helper to know whether a property has been loaded as a way to avoid LazyInitializationException. Is it possible?
@Entity
public class Parent {
@OneToMany
private …
0
votes
2answers
69 views
Is opening a file stream a costly operation
Is opening a file stream a costly operation
I'd like to provide a lazy loading functionality in a class that reads a structured file.
Every element of the file has a header and a …
0
votes
1answer
25 views
Use reflection stub to initialize a delegate field lazily
The problem:
a .Net 2.0 class with a few thousand delegate fields generated by a code generator
varying signatures
delegates may or may not return values
no generics
these del …
1
vote
2answers
73 views
Android: Which is a better design choice? Lazy Loading or Initial Waiting Time?
I have been an avid fan of lazy loading but yesterday I was talking with a fellow programmer who showed me another application and expressed how happy he was about the initial wait …
0
votes
1answer
136 views
Dynamic UIImage Content Loading in UITableView code?
im trying to get a tutorial/sample code on how to dynamic download uiimage in uitableview. Just like native iTunes App loading artwork dynamically. its also called "lazy loading"
…
0
votes
3answers
71 views
Lazy module variables--can it be done?
I'm trying to find a way to lazily load a module-level variable.
Specifically, I've written a tiny Python library to talk to iTunes, and I want to have a DOWNLOAD_FOLDER_PATH modu …
0
votes
1answer
58 views
Why doesn’t JPA offer a loadChildren() method for lazily loaded relations?
There are times when I want to define a relationship as being lazily loaded, since 90% of the time I don't want the child entities, yet also have the possibility of getting the who …
