Tagged Questions

1
vote
3answers
36 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 ev …
0
votes
2answers
23 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 Noa …
0
votes
2answers
29 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 busi …
0
votes
1answer
29 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.Addr …
0
votes
1answer
21 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 …
1
vote
3answers
89 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 dif …
2
votes
1answer
61 views

NHibernate - access the ID of an associated object without lazy loading the whole object

I have two associated business objects - A and B. the association is (A->B)many-to-one, with B.Id a foreign key in A (so A has A.B_id in the DB). I'm using lazy=true and solved mo …
3
votes
3answers
51 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: …
2
votes
1answer
110 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
1answer
26 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 …
2
votes
1answer
48 views

Entity Framework and Object Context lifetime in ASP.NET MVC

Hi there I'm using Entity Framework in my project, and I have the problem that, once I pass my entities to a View (keep in mind that these entities have lazy-initialized objects a …
0
votes
3answers
71 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
31 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
51 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
113 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 2 3 4 5 9 next
15 30 50 per page