Your browser does not support JavaScript! Please enable script of your browser.
D
O
tNet-Tricks
Handy Dot Net Tricks Implementation !!
" Coding , A Rhythmic Literary Job "
LINQ - Tutorial, Article, Archive, Pdf, Handy Tricks, Code Snippets, Training, Reference Manual, Lazy Loading, Immediate Loading, Eager Loading, Extension Method, Lamda Expression, Projection, Join, Ordering, Grouping, Filtering
LINQ Tutorial - Getting Started with LINQ
Var VS IEnumerable
Posted By : Shailendra Chauhan, 14 Sep 2012
Updated On : 17 Sep 2012

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.

 

IEnumerable VS IQueryable
Posted By : Shailendra Chauhan, 16 Jun 2012
Updated On : 14 Sep 2012

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

 

IEnumerable VS IList
Posted By : Shailendra Chauhan, 16 Jun 2012
Updated On : 14 Sep 2012

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.

 

Create xml from database using LINQ
Posted By : Shailendra Chauhan, 31 May 2012
Updated On : 31 May 2012

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.

 

Introduction to LINQ
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.

 

Tips & Tricks Subscription :