2
votes
1answer
45 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
2answers
63 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 …
0
votes
2answers
29 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
43 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 …
4
votes
1answer
109 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
48 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 …
0
votes
2answers
32 views
How do I compare an object with an NHibernate proxy object?
I'm using Compare .NET Objects to test whether my POCOs are persisted correctly to a test database. Let's take an example POCO:
public class NoahsArk
{
public virtual Noah Noah { get; set; }
}
…
0
votes
1answer
32 views
nHibernate Collection Count
I have the following model which I have created and mapped with nHibernate.
Using lazy loading so I don't need to get the Vehicles for the Dealer at the start.
Public class Dealer
{
public virtual …
0
votes
2answers
42 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 …
0
votes
1answer
37 views
Is EntityReference.Load checking for EntityReference.IsLoaded?
Hi I was wondering if EntityReference.Load method includes
If Not ref.IsLoaded Then ref.Load()
My question is basically:
Dim person = Context.Persons.FirstOrDefault
person.AddressReference.Load()
…
1
vote
3answers
138 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 …
0
votes
1answer
28 views
Is Shared ReadOnly lazyloaded?
Hello!
I was wondering when I write
Shared ReadOnly Variable As DataType = New DataType()
Or alternatively
Shared ReadOnly Variable As New DataType()
Is it lazy loaded or as the instance …
3
votes
3answers
59 views
How do I implement toString() in a class that is mapped with Hibernate?
I have an instance of a class that I got from a Hibernate session. That session is long gone. Now, I'm calling toString() and I'm getting the expected LazyInitializationException: could not initialize …
2
votes
1answer
118 views
How do I implement lazy module loading in Perl?
How can I implement lazy module loading in Perl?
I've seen similar things in python and implementation is somewhat simpler, but in Perl I think this would be a bit harder.
0
votes
0answers
6 views
NHibernate lazy loading part of a map
Hi all,
I was wondering if there is any way to lazy load part of map in NH?
Here is my mapping:
<map name="Resources" table="COUNTRY_TL" fetch="subselect">
<cache region="CountryCache" …
