0
votes
3answers
49 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
37 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
71 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
46 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
1answer
473 views
Lazy loading not working for many-to-one relationship when mapping to a non-key field using property-ref
I have a legacy database that I am mapping using NHibernate. The objects of concern are an Account and a list of Notification objects. The objects look like:
public class Notification
{
public …
0
votes
5answers
100 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 to reduce …
1
vote
2answers
48 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 …
1
vote
2answers
343 views
How to implement a Lazy List using SmartGWT and SQL
Hey all,
I was trying all of yesterday to try and integrate a SQL Database with SmartGWT for a lazy list but I just couldn't figure out how to implement it. (JavaDoc, and example of a lazy list)
…
0
votes
2answers
46 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 …
4
votes
1answer
119 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
52 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
33 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
61 views
Person -> Details with lazy loading
Yesterday I`ve asked a question Person -> Details database structure
Now I need to make a NHibernate mapping, where the details are lazy loaded.
so my person map is:
<class name="Employee" …
0
votes
1answer
34 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
1answer
38 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()
…
