I\'m building a web application and using lazy-loading as default. I would like the application to keep going even if I \"forgot\" (or did it by purpose) to load some sub-entities. This will make the
I have found this example Lazy load of images in ListViewfrom Fedor which is absolutely great for what I need.
I have a bare bones ORM implementation, consisting of data mappers which load and persist entities. Each mapper internally manages an identity map for all entities read from the database, so that the
I have found this example Lazy load of images in ListViewfrom Fedor which is absolutely great for what I need.
I have a (fictional) class with Fluent-mapping: public class Customer { public virtual int Id { get; set; }
I am experiencing a mid-career philosophical architectural crisis.I see the very clear lines between what is cons开发者_StackOverflow社区idered client code (UI, Web Services, MVC, MVP, etc) and the Se
I have JSF application with trinidad components and JAXB/JPA entity beans generated by Hyperjaxb3. In the UI I use Trinidad combo box component that has JPA object as values.
I have an application where a client communicates with a server side through REST. This is written in .Net, but I guess the question should be independent of this.
I have an application using Fluent NHibernate on the server side to configure the database. Fluent uses Lazyloading as default, but I explicitly disabled this as this gave me problems when sending the
I\'m trying to create a lazy image loader for images both from device and from the web for a ListView.