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 Queryable
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Rikam Palkar (2)
Mariusz Postol (1)
Ajay Kumar (1)
Jaimin Shethiya (1)
Muhammad Talha (1)
George (1)
Rupesh Kahane (1)
Vivek Tripathi (1)
Alpesh Maniya (1)
Ahmad Mozaffar (1)
Shreneek Patil (1)
Tuhin Paul (1)
Tural Suleymani (1)
Rahul Bansal (1)
Mudita Rathore (1)
Thiago Vivas (1)
Atul Sharma (1)
Jignesh Kumar (1)
Bryian Tan (1)
Sumit Arora (1)
Rahul Kumar Saxena (1)
Arunava Bhattacharjee (1)
Bechir Bejaoui (1)
Related resources for Queryable
No resource found
Programming in Practice - LINQ to SQL - Explained
7/29/2024 6:31:06 AM.
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
Differences Between IEnumerable and IQueryable in C#
7/17/2024 6:55:58 AM.
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
Generic Repository with EF Core Store Procedure in .NET Core 8
7/16/2024 12:40:58 PM.
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 execu
Optimizing LINQ Queries in C# and .NET Core Web APIs
6/21/2024 7:21:52 AM.
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. Def
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
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
Multiple Ways To Bind Data To Kendo Grid In MVC
5/2/2024 9:49:15 AM.
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 f
Difference between IEnumerable vs IQuerable
4/1/2024 6:34:21 AM.
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 scenar
Understanding Collection Types in C#
1/9/2024 4:35:29 AM.
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 unnece
Three Popular C# Interfaces
10/12/2023 11:53:45 AM.
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.
Difference between IQueryable, IEnumerable, IList and List
6/13/2023 4:40:52 AM.
when to use what IQueryable, IEnumerable, IList and List
Differences Between IEnumerable And IQueryable And Its Memory Usage
2/28/2023 10:47:15 AM.
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 d
.NET Interview Question - IEnumerable Vs IQueryable
8/8/2022 10:37:28 PM.
The differences between IEnumerable and IQueryable.
IEnumerable Vs IQueryable In LINQ
7/1/2022 7:28:34 AM.
In this article, I will demonstrate how to use IEnumerable and IQueryable in C#. Also learn the differences between IEnumerable and IQueryable.
Using Query Operators in ASP.Net Web API2
6/4/2021 7:49:22 AM.
This article explains how to use the Query Operators in Web API2 for filtering the data. For this we need to make the Web API method a Queryable method.
IEnumerable And IEnumerator In C#
6/22/2020 5:42:18 AM.
In this article, we discuss why we need these 3 and their purpose & implementation.
IQueryable Vs Queryable X IEnumerable Vs Enumerable Vs IEnumerator X IList Vs List
5/22/2019 9:24:58 AM.
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
2/12/2019 9:00:34 AM.
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 c
Difference Between IQueryable, IEnumerable, And IList In LINQ
2/10/2019 11:15:21 PM.
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
2/7/2017 12:08:52 AM.
In this article, you will learn how to convert DateTime to string (yyyy/mm/dd) format in ViewModel/Whatever class with IQueryable.
Collections in C#
8/5/2016 6:03:34 PM.
Collection in C# is a must-know concept for every developer. This article is about Collections in C#.
IEnumerable Vs IQueryable
6/2/2015 2:33:02 PM.
In this article you will learn the difference between IEnumerable and IQueryable.
Expression<Func<>> vs Func<>
9/2/2014 11:01:21 PM.
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
8/29/2008 8:09:10 AM.
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.