TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
About Lazy
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
George (4)
Debasis Saha (4)
Jitendra Mesavaniya (3)
Jignesh Trivedi (3)
Sanwar Ranwa (3)
Tahir Ansari (2)
Abhishek Saini (2)
Aman Gupta (2)
Vikas Singh (2)
Gajendra Jangid (2)
Amit Mohanty (2)
Abhishek Singhal (2)
Sourav Kayal (2)
Gaurav Gahlot (2)
Lokendra Singh (1)
Nikunj Satasiya (1)
Alkesh Bijarniya (1)
Amit Naik (1)
Rikam Palkar (1)
Mrunali Sawant (1)
Munib Butt (1)
Munesh Sharma (1)
Mohammad Irshad (1)
Satheesh Elumalai (1)
Jinal Shah (1)
Afsar Uddin (1)
Sandip Jadhav (1)
Ajay Kumar (1)
Sardar Mudassar Ali Khan (1)
Pranam Bhat (1)
Hemant Joshi (1)
Ng Cheehou (1)
Akhil Mittal (1)
Anand Lakshminarasimh (1)
Jaydeep Patil (1)
Shreneek Patil (1)
Ravikant Sahu (1)
Jay Pankhaniya (1)
Chris Love (1)
Anupam Maiti (1)
Ramasagar Pulidindi (1)
Abhishek Tiwari (1)
Bohdan Stupak (1)
Dhanush K (1)
Jay Krishnareddy (1)
Vitalii Honcharuk (1)
Sameer Shukla (1)
Ganesan C (1)
Haridhass Mani (1)
Abhimanyu K Vatsa (1)
Jignesh Kumar (1)
Amit Choudhary (1)
Atul Sharma (1)
CSharp TV (1)
Aditya Reddy (1)
Venkatesh Kumar (1)
Siddharth Gajbhiye (1)
Nirmal Dayal (1)
Akshay Phadke (1)
Mukesh Fulwariya (1)
Mukesh Kumar (1)
Puneet Kankar (1)
Mehreen Tahir (1)
Amey Vartak (1)
Fiyaz Hasan (1)
Devinder Yadav (1)
Manas Mohapatra (1)
Fabio Silva Lima (1)
Mahesh Chand (1)
Akash Varshney (1)
Jeetendra Gund (1)
Jay Parekh (1)
Jasminder Singh (1)
Matthew Cochran (1)
Amit Patel (1)
Dea Saddler (1)
Shinuraj (1)
Ashish Shukla (1)
Related resources for Lazy
No resource found
Lazy Loading (3): JavaScript
9/5/2024 7:46:58 PM.
This article will discuss Lazy Loading for JavaScript. This article on Lazy Loading for JavaScript demonstrates techniques to dynamically load images as users scroll, reducing page load time and enhan
Optimizing Angular Route Guards for Performance and Security
9/4/2024 6:13:15 AM.
Angular route guards manage access control in your application, ensuring users only access authorized routes. To optimize performance and security, implement lazy loading with CanLoad, cache permissio
Streamlining React Apps with Suspense and Lazy Loading
8/25/2024 11:29:06 AM.
Discover how React Suspense and lazy loading can supercharge your web apps by optimizing component and resource loading. This guide explains how these features work, with practical examples to show yo
Understanding of Iterators in Python
8/14/2024 5:39:20 AM.
Iterators in Python allow efficient traversal of sequences by implementing iter() and next() methods. Unlike iterables, iterators represent a stream of data and support on-demand value computation, en
Improving Performance in Angular Applications
8/1/2024 4:06:38 AM.
Learn essential strategies to optimize Angular performance, including lazy loading, AOT compilation, efficient change detection, and more. Boost your Angular app's speed and efficiency with these
Lazy Loading (4): EntityFramework
7/24/2024 4:50:05 PM.
This article will discuss lazy loading in Entity Framework. This article series explores Lazy Loading, focusing on its application in various technologies like LINQ, HTML, JavaScript, Entity Framework
Singleton Design Pattern: Detailed Explanation and Practical Examples
7/24/2024 6:52:58 AM.
The Singleton Design Pattern ensures a class has only one instance and provides global access to it. Implementations include Basic Singleton, Thread-Safe Singleton with synchronization, Double-Checked
Advanced Routing Mechanisms in Angular
7/22/2024 8:38:29 AM.
Enhance your Angular app with advanced routing features like lazy loading, route guards, and nested routes. Lazy loading defers component loading to reduce initial load times, while route guards manag
Singleton Design Pattern
7/19/2024 9:55:57 AM.
Learn about the Singleton design pattern, which ensures a single instance of a class in Java. Explore eager and lazy loading techniques, including thread-safe solutions like double-check locking and e
Harnessing Efficiency: Lazy Initialization in C# .NET
7/17/2024 12:43:28 AM.
Learn about lazy initialization in C# .NET—a vital design pattern that defers object creation until it's needed, optimizing performance and memory usage. Implementing with Lazy<T> ensures th
Name a few techniques to optimize Reactjs app performance
7/7/2024 8:27:52 AM.
Optimizing React app performance involves leveraging techniques like React. memo, useMemo, and use callback to minimize unnecessary re-renders. Employing code splitting via dynamic imports with React.
How Can We Achieve Code Spliting in React Js?
6/21/2024 7:18:45 AM.
In this article, I explain how to make React applications faster by loading only the code that's needed at the moment. I talk about using methods like dynamic import(), React.lazy, and Suspense to
Lazy Loading (1): Difference Between IEnumerable and IQueryable
6/21/2024 6:27:32 AM.
This article will discuss The Lazy loading related topic: Difference between IEnumerable and IQueryable
Understanding Eager Loading vs Lazy Loading in Angular
6/20/2024 6:45:53 AM.
Explore the impact of eager and lazy loading in Angular development on performance and user experience. Understand the benefits and implementations of both approaches. Eager loading simplifies navigat
Replace Conditional Statements (IF/ELSE Or SWITCH) With Factory
6/6/2024 11:40:34 AM.
Learn how to replace long IF/ELSE or SWITCH statements with polymorphism using the RIP design pattern. This article covers implementing the Simple Factory pattern and lazy loading, enhancing code mai
IQueryable vs IEnumerable
6/6/2024 7:48:45 AM.
IQueryable vs IEnumerable" explores the differences between these two interfaces in C#. IQueryable is suitable for building dynamic queries against a database, allowing deferred execution and opt
Lazy Loading (2): HTML
5/29/2024 5:30:01 AM.
This series explores Lazy Loading within the LINQ category, focusing on dynamically loading images in HTML to enhance page load times, featuring code examples and demos for practical application.
Eager Loading and Lazy Loading in Entity Framework
5/28/2024 5:29:38 AM.
Entity Framework (EF) is a popular Object-Relational Mapping (ORM) framework for .NET. Understanding these concepts is crucial for improving the performance and efficiency of your applications.
Implementing Lazy Loading in Angular
5/24/2024 6:06:21 AM.
Implementing lazy loading in Angular enhances performance by loading modules, components, or routes only when needed. This step-by-step guide offers a real-world example, detailing how to optimize Ang
Best Practices for Organizing Angular Modules 🛠️
5/15/2024 4:02:31 AM.
This article explores effective ways to organize Angular modules, likening it to tidying up a toy collection. It covers feature-based structure, shared and core modules, lazy loading, and more.
Association in Entity Framework
5/14/2024 11:00:56 AM.
Entity Framework manages associations between entities in databases, facilitating relationships like one-to-one, one-to-many, and many-to-many. Through navigation properties and various mapping strate
Using The Proxy Pattern In C#
5/7/2024 10:20:16 AM.
Explore the Proxy Pattern in C#, a structural design pattern facilitating controlled access to an object. Enhance security, logging, and lazy initialization for efficient client-server communication a
.NET Core Performance: Caching, Lazy Loading, indexing & profiling
5/1/2024 7:30:48 AM.
This article explores the world of performance optimization in .NET Core applications and SQL queries. Discover the science behind ensuring your software runs smoothly and efficiently through techniqu
Table Splitting in Entity Framework
4/25/2024 5:56:24 AM.
Entity Splitting in Entity Framework involves mapping an entity across multiple database tables, aiding in organizing data and optimizing performance. Table Splitting divides a single table into two,
Client-Side Performance Optimization (Angular)
4/19/2024 4:34:48 AM.
Angular client-side performance optimization involves techniques like Ahead-of-Time Compilation, Lazy Loading, Minification, Tree Shaking, Module Optimization, Bundle Size Analysis, and more for impro
Overview Of Routing And Navigation In Angular
4/16/2024 6:46:58 AM.
In this article we are going to learn the use of routing in angular. In any general application there are multiple views and to perform the navigation from one view to another we required routing. Rou
What is Lazy Loading Translations in Vue.js
3/28/2024 10:21:45 AM.
Lazy loading translations in Vue.js optimizes performance by dynamically loading translation files only when needed. Techniques include dynamic imports, Vue I18n's lazy loading, and custom solutio
Vue-Lazyload Directive in Vue.js
3/19/2024 11:29:15 AM.
The vue-lazyload directive in Vue.js enables lazy loading of images, enhancing page load times. Install the package, use the v-lazy directive in templates, and customize loading behavior for optimal p
Learn About Angular Lazy Loading
3/6/2024 9:55:02 AM.
Concept of lazy loading in Angular, which enables components and their content to load asynchronously, enhancing user experience by avoiding wait times for heavy content like images to render. It impl
Learn About Lazy Loading In Angular
3/6/2024 9:13:22 AM.
Lazy loading in Angular is a technique that defers the loading of modules until they're needed, improving initial load time. It involves configuring routes to load modules asynchronously, typicall
What Is Lazy Loading Translations in Vue.js
2/29/2024 10:43:22 AM.
Implementing lazy loading translations in Vue.js with Vue I18n involves asynchronously loading translation files when needed, reducing the initial bundle size and enhancing loading performance. Learn
Master Advanced Angular Techniques for Skillful Development
2/12/2024 10:59:50 AM.
Explore advanced Angular techniques and elevate your development skills with this comprehensive guide. Delve into topics such as lazy loading modules, dynamic component creation, and advanced routing
Polymorphism Concept in Object-Oriented Programming
2/12/2024 6:20:17 AM.
What do you mean by polymorphism? Polymorphism is explained with C# examples, Polymorphism, a concept extending beyond programming, is illustrated in everyday scenarios. Electrical outlets serve as an
Optimizing Angular and C# Performance
1/31/2024 7:29:23 AM.
Discusses performance optimization techniques for Angular and C# applications, covering lazy loading, code splitting, server-side rendering, and backend performance improvements in ASP.NET Core.
Optimizing Performance in C# Entity Framework
1/24/2024 8:19:10 AM.
Optimize the performance of your C# Entity Framework application with these strategic best practices. From lazy loading and eager loading to caching and database tuning, ensure efficient data access.
Lazy Loading In ASP.NET Core 7 Web API
1/22/2024 9:09:14 AM.
ASP.NET Core 7 Web API. Lazy loading is a technique where related data is only loaded from the database when it is explicitly requested. In Entity Framework Core, lazy loading can be achieved by marki
Eager Loading and Lazy Loading in .NET Core
12/29/2023 6:18:51 AM.
This article delineates two fundamental data retrieval strategies in .NET Core: Eager Loading and Lazy Loading. Eager loading is a technique used to retrieve related or associated data in a single que
Step By Step Guide: Lazy Loading in Angular
12/26/2023 2:17:45 PM.
In this article, you will learn about the step-by-step guide to implement lazy loading in an angular project.
Eager Loading, Lazy Loading And Explicit Loading In Entity Framework
11/22/2023 10:39:43 AM.
The readers will learn about Eager Loading, Lazy Loading and Explicit Loading in an Entity Framework.
Singleton Design Pattern: Eager And Lazy Initialization With Code Example
10/9/2023 5:54:22 AM.
Explaining the differences between eager and lazy singleton
Singleton Design Pattern In C# - Part Two (Eager and Lazy Initialization in Singleton)
8/31/2023 5:06:38 AM.
In this article, we’ll discuss Lazy initialization, the lazy keyword, why to make singleton class a sealed class and what are the differences between singleton and static class.
Loading Related Entities in Entity Framework
8/24/2023 1:22:43 PM.
Loading Related Entities in Entity Framework refers to the process of retrieving and populating associated data between entities within the Entity Framework, a popular object-relational mapping (ORM)
Column And Row In Jetpack Compose
8/7/2023 11:44:50 AM.
In this article, We will learn about Row and Column in Jetpack Compose.
LazyRow and LazyColumn In Jetpack Compose
8/4/2023 8:43:45 AM.
In this article, you will learn about how to use LazyRow and LazyColumn In Jetpack Compose.
Object Relational Mapping (ORM) Using NHibernate - Part 2 of 8
7/31/2023 5:41:13 AM.
Object-Relational Mapping (ORM) is a programming technique that allows developers to interact with a relational database using object-oriented programming paradigms. It bridges the gap between the obj
Feature Module with Lazy Loading in Angular
7/24/2023 5:08:19 AM.
Learn how to utilize feature modules in Angular, streamline your codebase, and benefit from lazy loading for improved performance. Follow a step-by-step example using Angular CLI and Node.js.
Difference between IQueryable, IEnumerable, IList and List
6/13/2023 4:40:52 AM.
when to use what IQueryable, IEnumerable, IList and List
Functions in Kotlin
4/28/2023 6:13:43 AM.
This article will explain functions and how they can be used in Kotlin.
Mastering Angular Best Practices: Tips and Tricks for Building Large-Scale Applications
4/21/2023 9:16:45 AM.
Boost Your Angular Game: Best Practices for Large-Scale Applications. From code optimization to server-side rendering, learn the top tips and tricks to master Angular development and build maintainabl
Optimizing Performance in Blazor
4/20/2023 8:15:12 AM.
Optimizing Performance in Blazor
Improve Page Speed with Lazy Loading for YouTube Embeds
4/16/2023 2:21:58 PM.
Looking to optimize your site's load times? Check out our guide to lazy loading YouTube videos and start improving your site today!
How To Implement Lazy Loading In Angular
1/30/2023 4:44:31 AM.
In this article, you will learn how to implement lazy loading in angular.
What's New In ASP.NET Core 7.0
12/22/2022 11:35:19 AM.
In this aricle, you will learn what's new in ASP.NET Core 7.0.
Grid View In SwiftUI
6/10/2022 6:34:30 AM.
Grid is a layout to represent items in rows and columns in SwiftUI. There are two types of Grid in SwiftUI LazyVGrid and LazyHGrid.
Leveraging Lazy Evaluation
6/8/2022 7:55:10 AM.
In this article, you will learn about leveraging lazy evaluation.
Lazy Loading In Angular With Example
5/16/2022 4:53:57 PM.
In this article we will see abut lazy loading concept in angular with an example.
Implement Lazy Loading in C# Using Lazy<T> Class
4/1/2022 10:21:46 AM.
This articles exlains why lazy loading is useful and how it helps to develop a high-performance application.
Lazy Loading In Angular
3/26/2022 10:47:07 AM.
In this article, you will learn about Lazy Loading in Angular.
How Lazyloading In Blazor Can Increase Your Application Performance!
3/3/2022 3:24:29 PM.
In this article, you will learn about the Lazyloading in the Blazor WASM with .Net 6.
Advanced Entity Framework Core Tips In Practice: Context pooling, Lazy vs Eager loading, Single vs. Split Queries, Tracking vs. No-Tracking Queries
1/11/2022 3:13:22 AM.
Advanced Entity Framework Core Tips In Practice: Context pooling, Lazy vs Eager loading, Single vs. Split Queries, Tracking vs. No-Tracking Queries
Functional Programming Using Vavr In Java
1/3/2022 4:59:37 AM.
Article explains how to implement Functional Programming concepts in Java application using Vavr library.
Lazy Loading In React
8/17/2021 1:39:12 PM.
In this article, you will learn about lazy loading and how to implement in React applications.
Learn About Angular Lazy Loading
5/18/2021 1:29:37 PM.
In this article, you will learn about Angular Lazy Loading.
What is Eager Loading and What is Lazy Loading and What is N+1 Problem in Entity Framework?
2/25/2021 10:35:12 AM.
In this article, you will learn what Eager Loading and Lazy Loading are and how they work in an application and how you can take advantage of them.
Implement Lazy Loading In MVC
2/24/2021 2:01:13 PM.
This article explains how to implement data lazy loading on scrollbar. Once user scroll screen using scroll bar base on scroll position on demand data load using ajax call.
Support for Lazy Initialization in .Net 4.0
2/5/2021 5:40:42 AM.
The Lazy initialization can be seen in designing the singleton pattern where we can have static readonly property in a nested class that initializes the singleton object in a Lazy way.
Angular Feature Module And Lazy Loading - One Of Way To Increase Application Performance
10/27/2020 11:47:44 PM.
In this article, we will discuss related to the overview of Feature Modules and Lazy Loading in any Angular Application.
Let's Be Lazy With Lazy <T>😴😴
10/9/2020 9:07:50 AM.
In this article, you will learn about Lazy <T>.
Improving Startup Performance with Angular Lazy Loading
8/14/2020 3:16:11 AM.
This is the seventh session of the Angular Virtual Conference by Srashti Jain.
SPFx Infinite Scroll
5/15/2020 7:38:01 AM.
This article explains how to have the SPFx web part display initial data, say the first 10 records, and when users scroll to the end, it then fetches another 10 results displays them.
Performance Improvement Using JavaScript Lazy Loaders
4/6/2020 3:25:46 AM.
In this article demonstrates, how we will improve performance using “Rocket.JS” and “Head.JS” open source library.
How to Use Augury to Check Lazy Loading in Angular 8
12/22/2019 9:21:42 AM.
In this article, you will learn how to use Augury to check lazy loading in Angular 8.
Lazy Loading with Generic Methods
11/11/2019 9:12:19 AM.
In this article, we will learn Lazy Loading using Generic Method in C#
Lazy Loading And Eager Loading In LINQ To SQL
7/5/2019 6:27:29 AM.
In this article, you will learn about Lazy Loading and Eager Loading in LINQ to SQL.
Why Use Lazy Loading In Angular
5/18/2019 9:22:30 AM.
The purpose of this article is to understand what lazy loading is, how to implement lazy loading in Angular, and comparing the load time of an application with and without lazy loading.
New Features Of Entity Framework Core 2.1 - Lazy Loading
4/12/2019 1:42:40 PM.
This article discusses the new feature added to Entity Framework Core 2.1, i.e., Lazy Loading.
Lazy Loading Of Modules In Angular 7
1/25/2019 8:49:29 AM.
In this article, we’ll learn the implementation of lazy loading in Angular.
Functional Programming In C++
11/26/2018 10:42:29 AM.
This article will show you an alternative way of using C++; How to write functional code in C++. You’ll see how to write more concise, safer, readable, reasonable code.
Lazy Loading In Angular
9/3/2018 9:57:38 AM.
Let’s have a look on lazy loading in angular, it also often referred as code splitting, as the name suggests splitting out code into multiple small chunks. So what all it does?
Using Lazy<T, TMetadata> In Dependency Injection
2/13/2018 10:16:49 PM.
Lazy<T,TMetadata> is a type provided by MEF to hold indirect references to exports. Here, in addition to the exported object itself, you also get export metadata, or information that describes t
Leveraging Lazy Instantiation In Our Application
12/18/2017 12:24:43 AM.
In this video, I have talked about optimizing an application by using Lazy Initialization in an application that is using dependency injection and is therefore loosely coupled.Enjoy the video.
Lazy-Loading NgModules In ASP.NET Core Angular SPA
7/25/2017 12:54:00 PM.
This article shows you how configure ASP.NET Core Angular SPA starter project to serve a lazy-loaded Angular module. Angular has this cool feature of loading a module lazily. Modules that are set up t
AngularJS 2.0 From The Beginning - Lazy Loading Of Modules - Day Twenty Four
5/2/2017 9:34:52 AM.
In this article, we will discuss about the lazy loading of Angular modules
What Is Deferred/ Lazy Loading And Eager Loading?
4/28/2017 3:18:56 PM.
In his article, you will learn about Deferred/ Lazy Loading and Eager Loading.
Lazy Loading In ASP.NET MVC
12/30/2016 12:10:09 PM.
This article describes what lazy loading is and how it can be implemented in the application.
AngularJS Reloaded - Lazy Loading Files
12/14/2016 11:08:20 AM.
In this article, I will show you how to load your scripts and styles, using AngularJS and UI Router Resolve when it’s required.
AngularJS From Beginning: Lazy Loading Of Angular Files - Part 16
5/24/2016 11:10:23 AM.
In this article, we will discuss how to perform on demand loading of AngularJS files using requirejs. This is part 16 of the article series.
Lazy Loading AngularJS Controller Files Using RequireJS
3/20/2016 12:11:32 PM.
In this article, we will discuss how to load AngularJS controller file at run time for a single page application.
Are Developers Lazy
3/7/2016 10:15:11 AM.
Once a developer, always a developer. I am a developer. Do you think good developers are lazy by nature?
Lazy Loading In C# 4.0 (Object On Demand)
10/13/2015 8:00:11 AM.
In this article you will learn about Lazy Loading in C# 4.0 (Object On Demand).
Lazy Initialization in .NET
10/31/2014 4:32:41 AM.
In this article, we will learn the basics of Lazy Initialization in .NET and how to implement it in our applications.
Lazy and Eager Loading in Entity Framework
5/19/2014 12:24:28 PM.
In this article we will see how to implement lazy loading in the Entity Framework.
Getting Started With MEF to Load WPF User Controls From .Dll in VS 2012
5/22/2013 8:51:27 AM.
This article will show how to make a DLL that contains WPF User Controls and then we can load that .dll using MEF (lazy loading) then how to add that User Controls to other applications from the dll.
Lazy Loading vs Eager Loading
4/19/2013 3:54:28 PM.
This article describes lazy and eager loading of data in the Entity Framework.
Functional Programming with C#: Lazy Calculation
9/29/2012 8:44:55 AM.
I ran across Mike Gold’s nice algorithm for finding primes using LINQ syntax and thought I’d use his idea as a base from which to demonstrate one of the more subtle features in functional programming: lazy calculation.
Lazy Initialization in .NET 4.0
9/22/2012 3:26:47 AM.
Lazy initialization of an object means that its creation is deferred until it is first used.
Concept of Sequence in F#
7/20/2011 7:03:16 PM.
This article is a demonstration regarding Sequence, Sequence comprehension, Range expression and Sequence Module aggregate operators. It also contains lazy evaluation of Sequence elements. Have a quick review to learn.
System.Lazy(Of T) Class
2/16/2011 4:36:19 AM.
With .Net 4.0 we can enable lazy initialization for any custom type by wrapping the type inside a System.Lazy(Of T) class.
Lazy Initailization in .NET 4.0
5/17/2010 12:25:19 AM.
Lazy initialization or lazy instantiation means that an object is not created until it is first referenced. Lazy initialization is used to reduce wasteful computation, memory requirements. Following is an example where Lazy initialization is particularly useful.