0
votes
1answer
23 views
Preferred way to convert from Lazy/Delay-loading to Eager-loading in an API?
I've been working on an API (which wraps a web-service of sorts) for a while now, and its just about feature complete.
I initially designed this API to be lazy/delay-loaded throughout; which makes …
2
votes
3answers
35 views
Is it possible to enable/disable lazy loading for all entities across a NHibernate Session?
By default, NHibernate lazy loads all collections, which works fine for me in most cases. However, I'm running into problems with some tools that use reflection, which doesn't play well with proxied …
0
votes
1answer
56 views
Building applications with Spring and Hibernate (outside of the web)
What’s the best approach in building an application that needs to utilize spring and hibernate to pull up POJO and lazily loaded objects?
The application needs access to Hibernate objects from a …
0
votes
1answer
18 views
NHibernate Hanging on Lazy Loaded Query
First of all, I'm using Fluent NHibernate with LinqToNHibernate.
I've got a query to do a search on a table based on what data the user entered. So, for example, I'm doing something like this:
…
2
votes
1answer
76 views
Update one value from a list of dependent objects
Given an entity with a list of components:
class Entity{
Long id;
String name;
List<Component> components = new ArrayList<Component>();
}
class Component{ Object value; }
…
0
votes
1answer
24 views
Efficiently selecting a tree in Linq-To-Sql
Hello!
I have a linq-to-sql data layer, with 2 tables in it. "Parent" and "Child". There's a relationship between Child and Parent (so parent has many children, etc etc), a parent can also have …
0
votes
3answers
68 views
NHibernate: Lazyload single property
Hi,
I have currently moved my blogengine over from Linq2Sql to NHIbernate.
I'm stuck at the following performance problem:
I got one table: 'Posts', that has Id, Title, PostContent, DateCreated …
0
votes
3answers
43 views
the nhibernate cross machine lazy load problem
i got a client a server and a db
db mapped to server with fluent nhibernate.
so far so good
the client talks with the server with wcf.
i want to implement lazy loading on client side.
is there any …
1
vote
2answers
78 views
POCO objects with lazy loading
Hi!
I'am new to ASP.NET MVC, IoC, POCO, etc. So I want to know is it OK to use such kind of architecture.
This is my demo project.
Project.Core (this assembly referenced by all project)
public …
2
votes
1answer
52 views
Rewrite this foreach yield to a linq yield?
Say I have the following code (context narrowed down as to keep the question scope limited)
public static IEnumerable<Color> GetThemColors(){
var ids = GetThePrimaryIds();
foreach (int id in …
1
vote
3answers
65 views
JQuery plugin for lazy-loading/lazy-evaluation?
Is there such jQuery plugin?
More specific:
I want to use some elegant and easy way to postpone some code execution until it's really needed (some event happens). And when this event happens, the …
4
votes
1answer
138 views
Lazy/Eager loading strategies in remoting cases (JPA)
I'm running into LazyLoading exceptions like the most people who try remoting with an ORM.
In most cases switching to eager fetching solves the problem (Lazy Loading / Non atomic queries / Thread …
1
vote
3answers
171 views
Fetched Properties v Relationships (Core Data - iPhone)
I'm a new iPhone developer (of about 4 months or so) who is starting to look at Core Data.
In the "Beginning iPhone 3 Development" book by Dave Mark it mentions that the main difference between …
1
vote
2answers
59 views
Advanced topic of dynamic lazy loading of DLLs in silverlight application
It's a common sense when you are developing a big silverlight application that break it into many small components, to make the original XAP file relatively small and dynamically load the necessary …
0
votes
2answers
53 views
GridView doesn’t cause NHibernate proxy to load relationships
I'm currently learning NHibernate and I would like to data-bind to Web controls (i.e. GridView).
In my current example I am using Fluent NHibernate to map two tables to their business objects …
