Users Pricing

tag

home / developersection / tag
Improve the performance of a slow-running LINQ query
c# 16 Jun 2025
Improve the performance of a slow-running LINQ query

Improving the performance of a slow-running LINQ query—especially when using Entity Framework or LINQ to SQL

When to use LINQ instead of Procedure in .NET applications
.net 01 Mar 2024
When to use LINQ instead of Procedure in .NET applications

LINQ provides with common query syntax to query data sources while stored procedure is a pre-compiled set of one or more SQL statements that are stored in DBMS.

Explain the use of LINQ in .NET
.net core 28 Feb 2024
Explain the use of LINQ in .NET

LINQ supports filtering, sorting, ordering, grouping. It makes easy debugging because it is integrated with C# language. Let's know more about the uses of LINQ.

LINQ Joins in C#
.net 28 Jan 2015
LINQ Joins in C#

In this blog, I’m explaining about joins in LINQ in .NetThere are different types of LINQ joins.1.Inner join2.Left join3.Cross join4.Group joinInner j

Reading XML from LINQ
linq 19 Dec 2013
Reading XML from LINQ

In this blog, I’m explaining how to read the xml from linq query.Example In this example, we will have two combo boxes – country and city and we will

Language Integrated Query (LINQ)
linq 19 Dec 2013
Language Integrated Query (LINQ)

In this blog, I’m explaining the language integrated query and how to use it in our application. LINQ stands for Language Integrated Query is a moder

Introduction to LINQ
linq 14 May 2012
Introduction to LINQ

Language-Integrated Query (LINQ) is a set of features introduced in Visual Studio 2008 that extends powerful query capabilities to the language syntax of C# and Visual Basic.

LINQ to SQL Backward compatibility:
linq 05 Jan 2012
LINQ to SQL Backward compatibility:

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data.Linq; using System.Data.Linq.Mapping; us

LINQ Implementation on 3-tier application
linq 10 Nov 2011
LINQ Implementation on 3-tier application

Language Integrated Query (LINQ), pronounced simply as 'link' is a is a component released within the .NET 3.5 Framework. It is one of the most powerf

I LINQ to Array.
linq 11 Aug 2011
I LINQ to Array.

Hi...In this blog I will give you a small demonstration on LINQ to ARRAY. Here I will explain you that how to use LINQ for array to perform certain ta

LINQ in .NET
linq 17 Nov 2010
LINQ in .NET

LINQ is a set of extensions to the .NET Framework that encompass language-integrated query, set, and transform operations. It extends C# and Visual Ba

What is LINQ?
linq 07 Sep 2010
What is LINQ?

LINQ address the current database development model in thecontext of Object Oriented Programming Model. If we want to develop database applicationin .