About 21,200,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. 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 …

  4. 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' …

  5. 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 …

  6. Largest Contentful Paint increased dramatically when using LazyLoad

    Sep 18, 2020 · 21 Why does my Largest Contentful Paint (LCP) time improve after removing lazy load? This tends to be an implementation issue. LCP measures when the largest paint …

  7. How to fetch FetchType.LAZY associations with JPA and Hibernate …

    Mar 12, 2013 · public interface PersonRepository extends JpaRepository<Person, Long> { } However, in this controller I actually need the lazy-data. How can I trigger its loading? Trying to …

  8. 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 …

  9. Lazy loading routes in react router v6 - Stack Overflow

    May 26, 2023 · Lazy loading routes in react router v6 Asked 2 years, 7 months ago Modified 1 year, 1 month ago Viewed 27k times

  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 …