Resources  
  • Differences Between IEnumerable And IQueryable And Its Memory UsageFeb 28, 2023. IEnumerable and IQueryable are two of the most commonly used interfaces in .NET for dealing with collections of data. While both of these interfaces provide a way to access collections of data, they differ in their implementation and usage, as well as in their memory usage.
  • IEnumerable Vs IQueryable In LINQFeb 18, 2014. In this article, I will demonstrate how to use IEnumerable and IQueryable in C#. Also learn the differences between IEnumerable and IQueryable.
  • Difference between IQueryable, IEnumerable, IList and ListJun 12, 2023. when to use what IQueryable, IEnumerable, IList and List
  • Lazy Loading (1): Difference Between IEnumerable and IQueryableJun 05, 2023. This article will discuss The Lazy loading related topic: Difference between IEnumerable and IQueryable
  • .NET Interview Question - IEnumerable Vs IQueryableAug 08, 2022. The differences between IEnumerable and IQueryable.
  • IQueryable vs IEnumerable Jun 22, 2020. 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 optimized query translation.
  • IQueryable Vs Queryable X IEnumerable Vs Enumerable Vs IEnumerator X IList Vs List May 22, 2019. In this article, we will learn the differences and importance of each one - IQueryable, Queryable, IEnumerable, Enumerable, Enumerator, IList, and List.
  • All About IEnumerable and IQueryableFeb 12, 2019. When we talk about LINQ, we consider two collections, IEnumerable and IQueryable. In this article, we will learn all about IEnumerable and IQueryable, except how they are evaluated. Possibly, I will cover that in the next article to strengthen our basic understanding.
  • Difference Between IQueryable, IEnumerable, And IList In LINQFeb 09, 2019. This article explains how to work with IQueryable and IEnumerable and IList in LINQ. Also, it tells when to use IQueryable and IEnumerable in real-time scenarios.
  • Convert DateTime To String Format Using IQueryableJan 10, 2017. In this article, you will learn how to convert DateTime to string (yyyy/mm/dd) format in ViewModel/Whatever class with IQueryable.
  • IEnumerable Vs IQueryableJun 02, 2015. In this article you will learn the difference between IEnumerable and IQueryable.
  • Optimizing LINQ Queries in C# and .NET Core Web APIsJun 21, 2024. LINQ in C# optimizes data querying with readable syntax, but inefficient use can impact .NET Core Web API performance. Strategies like early filtering and selective projections enhance efficiency. Deferred execution via IQueryable delays query execution, optimizing database interactions.
  • Understanding Collection Types in C#Jan 09, 2024. Delving into collection types like IEnumerable and IQueryable in C# unveils their impact on data querying efficiency. While IEnumerable offers simplicity for in-memory operations, it might load unnecessary data. IQueryable optimizes query execution by fetching only required data, which is beneficial, especially with extensive datasets or remote sources.
  • IEnumerable And IEnumerator In C#Jun 22, 2020. In this article, we discuss why we need these 3 and their purpose & implementation.
  • Three Popular C# InterfacesJan 09, 2018. In this article, you will learn about the most common interfaces in the C# Libraries that you can use to create robust classes and objects.
  • Multiple Ways To Bind Data To Kendo Grid In MVCJun 24, 2017. Discover various methods to bind data to Kendo Grid in MVC. From server-side binding with IQueryable to client-side binding via AJAX and JSON, explore options like DataSource, ViewData, or ViewModel for seamless integration of data within your MVC application.
  • Collections in C#Aug 05, 2016. Collection in C# is a must-know concept for every developer. This article is about Collections in C#.
  • Difference between IEnumerable vs IQuerableMay 29, 2015. Understand the difference between IEnumerable and IQueryable in .NET collections. While IEnumerable is suitable for in-memory collections, IQueryable allows for optimized queries, especially in scenarios like Entity Framework with database operations, enhancing performance significantly.
  • Expression<Func<>> vs Func<>Sep 02, 2014. In this post you will learn the difference between Expression&lt;Func&lt;&gt;&gt; and Func&lt;&gt; and thier usages.
  • Use CompiledQuery.Compile method to build parameterized DLINQ queriesAug 29, 2008. In this article, I will make use of the CompiledQuery.Compile generated method which receives a Lambda expression as parameter, and then it generates a delegate that returns a generic IQueryable object that one can enumerate it through a foreach loop.

About IQueryable

NA

OUR TRAINING