About 9,710,000 results
Open links in new tab
  1. data binding - What is Lazy Loading? - Stack Overflow

    The term lazy loading is usually used when talking about object relational mappers. If you use ADO.NET directly you always get eager loading (ie it always loads just what you specify). OR …

  2. Image lazy loading strategy; what problems may I encounter?

    Sep 2, 2022 · I am looking at disadvantages of lazy-loading images, and I must be hyper-thorough because we are considering implementing loading="lazy" on many/most images in …

  3. How can I make a JPA OneToOne relation lazy - Stack Overflow

    To get lazy loading working on nullable one-to-one mappings you need to let hibernate do compile time instrumentation and add a @LazyToOne(value = LazyToOneOption.NO_PROXY) to the …

  4. c# - When should I use Lazy<T>? - Stack Overflow

    Jul 27, 2011 · I found this article about Lazy<T>: Laziness in C# 4.0 – Lazy Can someone point me to a practical use of the Lazy<T> class in a real application? In other words, when should I …

  5. java - What is lazy loading in Hibernate? - Stack Overflow

    Feb 3, 2010 · What is lazy loading in Java? I don't understand the process. Can anybody help me to understand the process of lazy loading?

  6. c# - Entity Framework Core - Lazy Loading - Stack Overflow

    Oct 19, 2016 · Bowing to my Visual Studios request, I started my latest project using Entity Framework Core (1.0.1) So writing my database models as I always have using the 'virtual' …

  7. javascript - How to load images dynamically (or lazily) when users ...

    3 Lazy loading images by attaching listener to scroll events or by making use of setInterval is highly non-performant as each call to getBoundingClientRect () forces the browser to re-layout …

  8. c# - Lazy Loading vs Eager Loading - Stack Overflow

    Jul 12, 2015 · Under what situation could eager loading be more beneficial than lazy loading? Lazy loading in Entity Framework is the default phenomenon that happens for loading and …

  9. Understanding lazy loading optimization in C# - Stack Overflow

    Feb 2, 2016 · Lazy loading not always mean deferring loading until you really need data. Loading might occur in background thread before you really need that data. E.g. you might never scroll …

  10. hibernate - Difference between FetchType LAZY and EAGER in Java ...

    Jun 7, 2010 · However, in case of lazy loading strategy, lazy loading marked object does not retrieve data if session is disconnected (after session.close() statement). All that can be made …