ARTICLE

Linq queries for beginners

Posted by Ravi Panara Articles | LINQ December 01, 2010
Following are some of the basic Linq command/samples for those who just want to start learning Linq.
Reader Level:

Following are some of the basic Linq command/samples for those who just want to start learning Linq. So this will help a lot to all the beginners to easily understand Linq queries.

// Basic Query
// To achieve  Select * From ProductMst  you need to write follofing linq Query
  var Result1 = from p in db.ProductMst
                 select p;
// To achieve  Select ProductID, ProductName, Price From ProductMst you need to write follofing linq Query
    var Result2 = from p in db.ProductMst
                 select new {
                     p.ProductID,
                     p.ProductName,
                     p.Price
                 };

// Where Clause Query
// To achieve  Select * From ProductMst Where ProductID = 1 you need to write follofing linq Query
    var Result3 = from p in db.ProductMst
                 where p.ProductID == 1
                 select p;

// To achieve Select * From ProductMst Where SupplierId =2 and Price > 10 you need to write follofing linq Query
    var Result4 = from p in db.ProductMst
                 where p.SupplierID == 2 && p.Price > 10
                 select p;


// To achieve Select * From ProductMst Where SupplierId =2 Or SupplierId=5 you need to write follofing linq Query
    var Result5 = from p in db.ProductMst
                 where p.SupplierID == 2 || p.SupplierID == 5
                 select p;

// Order By Query
//To achieve   Select * From ProductMst Order By ProductId you need to write follofing linq Query
    var Result6 = from p in db.ProductMst
                 orderby p.ProductID
                 select p;

// To achieve  Select * From ProductMst Order By ProductId Desc you need to write follofing linq Query
    var Result7 = from p in db.ProductMst
                 orderby p.ProductID descending
                 select p;

// To achieve  Select * From ProductMst Order By CategoryId, Price Desc you need to write follofing linq Query
    var Result8 = from p in db.ProductMst
                 orderby p.CategoryID, p.Price descending
                 select p;

// Top Query
//To achieve Select Top 5 * From ProductMst you need to write follofing linq Query
    var Result9 = (from p in db.ProductMst
                 select p).Take(5);

//To achieve Select Top 1 * From ProductMst you need to write follofing linq Query
    var Result10 = (from p in db.ProductMst
                   select p).Take(1);
     or

    var Result11 = (from p in db.ProductMst
                   select p).First();

// Distinct Query
//To achieve Select Distinct CategoryId From ProductMst you need to write follofing linq Query

    var Result13 = (from p in db.ProductMst
                   select p.CategoryID).Distinct();

// Group By Query
//To achieve Select CategoryId, Count(CategoryID) As FieldName From ProductMst Group By CategoryId you need to write follofing linq Query
    var Result14 = from p in db.ProductMst
                  group p by p.CategoryID into g
                  select new {
                      CategoryId = g.Key,
                      FieldName = g.Count()
                  };

//To achieve Select CategoryId, Avg(UnitPrice) As NewField From ProductMst Group By CategoryId you need to write follofing linq Query
    var Result15 = from p in db.ProductMst
                  group p by p.CategoryID into g
                  select new {
                      CategoryId = g.Key,
                      FieldName = g.Average(S => S.Price)
                  };

// Union Query
//To achieve Select * From ProductMst Where CategoryId =1 union Select *  From ProductMst Where CategoryId = 2 you need to write follofing linq Query
    var Result17 = (from p in db.ProductMst
                   where p.CategoryID == 1
                   select p).Union(
                       from m in db.ProductMst
                       where m.CategoryID == 2
                       select m
                   );

Login to add your contents and source code to this article
post comment
     

very good article for bigginers........Thanks a lot of

Posted by rahul Mar 23, 2013

Realy this is very nice query for begginers........Thanks

Posted by shambhoo kumar Dec 18, 2012

Thank sir for giving this information..

Posted by Manohar Medarametla Dec 03, 2010

Hi,
please modify following query according your requirement.

from p in PartTable
join j in CustTable on p.cust_id equals j.id
where j.cust_name == "abc"
select p

you can replace "abc" with the variable you have set for the name.

Thanks,

Posted by Ravi Panara Dec 03, 2010

Would be good if you can post how to query data from more than one table. I know there is join but is there a simpler method to do this ?

Posted by Mithun C Dec 02, 2010
COMMENT USING
PREMIUM SPONSORS
DynamicPDF™ product line allows you to dynamically generate PDF documents, merge PDF documents and add new content to existing PDF documents from within your applications.
Get Career Advice from Experts
SPONSORED BY
  • PDF reports have never been easier to create. With our included WYSIWYG Designer, you can layout your reports, set up your data source and let DynamicPDF ReportWriter do the rest.
Join a Chapter