LINQ Tutorial - For Beginners & Professionals
linq with c#,linq to sql,linq with .net,linq recipes,linq tips, linq tricks, linq tips & tricks, linq internal
Posted By : Shailendra Chauhan, 17 Jul 2014
Updated On : 17 Jul 2014
LINQ standard query operators are the methods which help you to write LINQ query. Most of these query methods operate on sequences or collection whose implement the IEnumerable<T> interface or the IQueryable<T> interface. These operators provide query capabilities including filtering, projection, aggregation, sorting and much more.
Posted By : Shailendra Chauhan, 16 Jul 2014
Updated On : 16 Jul 2014
As you know LINQ provides a common query syntax to query any data source and ADO.NET allows you to execute query against any RDBMS like SQL Server, Oracle etc. In this article, I am sharing my view on LINQ and ADO.NET.
Posted By : Shailendra Chauhan, 16 Jul 2014
Updated On : 16 Jul 2014
LINQ has a JOIN query operator that provides SQL JOIN like behavior and syntax. As you know, Inner join returns only those records or rows that match or exists in both the tables. The simple inner join example is given below:
Posted By : Shailendra Chauhan, 16 Jul 2014
LINQ provides element operators which return a single element or a specific element from a collection. The elements operators are Single, SingleOrDefault, First, FirstOrDefault, Last, LastOrDefault.
Posted By : Shailendra Chauhan, 16 Jul 2014
Updated On : 16 Jul 2014
LINQ provides a uniform programming model (i.e. common query syntax) to query data sources (like SQL databases, XML documents, ADO.NET Datasets, Various Web services and any other objects such as Collections, Generics etc.). LINQ provides you three different ways to write a LINQ query in C# or VB.
Posted By : Shailendra Chauhan, 16 Jul 2014
Updated On : 16 Jul 2014
LINQ provides a common query syntax to query any data source. In a LINQ query, you always work with objects. The object may in-process object or out-process object. Based on objects, LINQ query expression is translated and executed.
Posted By : Shailendra Chauhan, 16 Jul 2014
Updated On : 16 Jul 2014
Select and SelectMany are projection operators. Select operator is used to select value from a collection and SelectMany operator is used to select values from a collection of collection i.e. nested collection.
Posted By : Shailendra Chauhan, 12 Jul 2014
Updated On : 15 Jul 2014
In .NET, Expression is an abstract class which contains static methods and inherited by various types (like ParameterExpression, MethodCallExpression) to create expression tree nodes of specific types. A ParameterExpression represents a named parameter expression and a MethodCallExpression represents a method call.
Posted By : Shailendra Chauhan, 03 Jun 2014
Updated On : 04 Jun 2014
LINQ provided you common query syntax to query various data sources like SQL Server, Oracle, DB2, WebServices, XML and Collection etc. LINQ also has full type checking at compile-time and IntelliSense support in Visual Studio, since it used the .NET framework languages like C# and VB.NET.
Posted By : Shailendra Chauhan, 18 Oct 2012
Updated On : 03 Dec 2014
There are Different Types of SQL Joins which are used to query data from more than one tables. In this article, I would like to share how joins work in LINQ. LINQ has a JOIN query operator that provide SQL JOIN like behavior and syntax. Let's see how JOIN query operator works for joins. This article will explore the SQL Joins with C# LINQ.
Posted By : Shailendra Chauhan, 14 Sep 2012
Updated On : 17 Feb 2014
Basically, IEnumerable is an interface that can move forward only over a collection, it can’t move backward and between the items. Var is used to declare implicitly typed local variable means it tells the compiler to figure out the type of the variable at compilation time. A var variable must be initialized at the time of declaration.
Posted By : Shailendra Chauhan, 16 Jun 2012
Updated On : 01 May 2013
In LINQ to query data from collections, we use IEnumerable and IList for data manipulation.IEnumerable is inherited by IList, hence it has all the features of it and except this, it has its own features. IList has below advantage over IEnumerable.
Posted By : Shailendra Chauhan, 16 Jun 2012
Updated On : 28 Jan 2015
In LINQ to query data from database and collections, we use IEnumerable and IQueryable for data manipulation. IEnumerable is inherited by Iqueryable, hence it has all the features of it and except this, it has its own features. Both have its own importance to query data and data manipulation. Let’s see both the fetures and take the advantage of both the fetures
Posted By : Shailendra Chauhan, 31 May 2012
Updated On : 24 Jun 2014
XML data is often used to transfer data from one application to another. Since XML is language independent, hence it is a good choice to use xml for transferring data between two different platform applications. In C#, it is easy to make xml from database by using LINQ to SQL and LINQ to XML.
Posted By : Shailendra Chauhan, 08 Mar 2011
Updated On : 14 Jul 2012
LINQ stands for Language-Integrated Query. Basically LINQ address the current database development model in the context of Object Oriented Programming Model. If some one wants to develop database application on .Net platform the very simple approach he uses ADO.Net. ADO.Net is serving as middle ware in application and provides complete object oriented wrapper around the database SQL.