Click here to Skip to main content
15,891,375 members
Articles / Programming Languages / C#
Tip/Trick

Get Last n Records using Linq to SQL

Rate me:
Please Sign up or sign in to vote.
4.33/5 (2 votes)
4 Nov 2012CPOL 55.6K   6  
Get Last n Records using Linq to SQL

The small post is about getting last n number of record(s) from the database table or from the collection using LINQ.
 

SQL
To get last n number of record(s) from table I do write the following query on my table records in T-SQL.
 

SELECT TOP n <fields> FROM Forms WHERE <field> = <data> 
ORDER BY <field> DESC

As you see in above query important thing is using order by with desc keyword means reversing the table records - (mostly we apply the order by desc on the primary key of the table).
 

LINQ
In LINQ we achieve the same thing with the help of OrderByDescending function and Take function.

var qry = db.ObjectCollection
                     .Where(m => m.<field> == data) 
                     .OrderByDescending(m => m.<field>) 
                     .Take(n); 
In above LINQ query same as sql need to apply the where condition first than make collection reverse using order by function and to get top record you just need to make user of Take function.
 
But to get the last record for the collection you make use of FirstOrDefault function as below
var qry = db.ObjectCollection
                     .Where(m => m.<field> == data) 
                     .OrderByDescending(m => m.<field>) 
                     .FirstOrDefault(); 
 
Read about the method use on MSDN

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
India India

Microsoft C# MVP (12-13)



Hey, I am Pranay Rana, working as a Team Leadin MNC. Web development in Asp.Net with C# and MS sql server are the experience tools that I have had for the past 5.5 years now.

For me def. of programming is : Programming is something that you do once and that get used by multiple for many years

You can visit my blog


StackOverFlow - http://stackoverflow.com/users/314488/pranay
My CV :- http://careers.stackoverflow.com/pranayamr

Awards:



Comments and Discussions

 
-- There are no messages in this forum --