C# Corner
Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Tags
No tag found
Content Filter
Articles
Videos
Blogs
Resources
News
Forums
Interviews
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Rikam Palkar(2)
Ajay Kumar(1)
Tuhin Paul(1)
Rahul Bansal(1)
Shreneek Patil(1)
George (1)
Tural Suleymani(1)
Thiago Vivas(1)
Atul Sharma(1)
Jignesh Kumar(1)
Bryian Tan(1)
Rahul Kumar Saxena(1)
Mariusz Postol(1)
Jaimin Shethiya(1)
Muhammad Talha(1)
Alpesh Maniya(1)
Ahmad Mozaffar(1)
Rupesh Kahane(1)
Sumit Arora(1)
Vivek Tripathi(1)
Arunava Bhattacharjee(1)
Bechir Bejaoui(1)
Resources
No resource found
Differences Between IEnumerable and IQueryable in C#
Jul 17, 2024.
Explore the nuances between IEnumerable and IQueryable in C#. Understand how these interfaces differ in data retrieval and manipulation, with a focus on performance implications and suitable use cases.
Differences Between IEnumerable And IQueryable And Its Memory Usage
Feb 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 LINQ
Feb 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 List
Jun 12, 2023.
when to use what IQueryable, IEnumerable, IList and List
Lazy Loading (1): Difference Between IEnumerable and IQueryable
Jun 05, 2023.
This article will discuss The Lazy loading related topic: Difference between IEnumerable and IQueryable
.NET Interview Question - IEnumerable Vs IQueryable
Aug 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 IQueryable
Feb 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 LINQ
Feb 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 IQueryable
Jan 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 IQueryable
Jun 02, 2015.
In this article you will learn the difference between IEnumerable and IQueryable.
Programming in Practice - LINQ to SQL - Explained
Jul 18, 2024.
Discover the power of LINQ to SQL in this comprehensive guide. Learn how to seamlessly integrate LINQ queries with SQL databases using the .NET framework. From setting up your environment to executing complex queries, this tutorial covers it all.
Generic Repository with EF Core Store Procedure in .NET Core 8
Jul 16, 2024.
Entity Framework Core (EF Core) empowers .NET developers with seamless database interaction through object-relational mapping (ORM) and support for stored procedures. It optimizes performance by executing complex SQL logic directly on the server, enhancing efficiency for CRUD operations.
Optimizing LINQ Queries in C# and .NET Core Web APIs
Jun 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# Interfaces
Jan 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 MVC
Jun 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 IQuerable
May 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<Func<>> and Func<> and thier usages.
Use CompiledQuery.Compile method to build parameterized DLINQ queries
Aug 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.