Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I do this

Select top 10 Foo from MyTable

in Linq to SQL?

share|improve this question

11 Answers

up vote 82 down vote accepted
from m in MyTable
take 10
select m.Foo

This assumes that MyTable implements IQueryable. You may have to access that through a DataContext or some other provider.

It also assumes that Foo is a column in MyTable that gets mapped to a property name.

See http://blogs.msdn.com/vbteam/archive/2008/01/08/converting-sql-to-linq-part-7-union-top-subqueries-bill-horst.aspx for more detail.

share|improve this answer
77  
That doesn't work in C#, there is no take expression. You need to use the Take() method. – Adam Lassek Oct 10 '08 at 16:49
6  
Technically, the questioner asked for Linq to SQL, so VB is a viable assumption. That said, ALassek, i'm a c# guy myself and prefer your answer. :-) – David Alpert Oct 10 '08 at 16:51
Well, you're example was written in C# LINQ which is why I pointed that out. – Adam Lassek Oct 10 '08 at 16:52
3  
2 problems: 1) this works fine in VB. in C# you have the Take method. 2) the take works in client, not in db, so if you have large result set you would end up getting all of it to the client from the db! – Yuki Mar 13 '11 at 4:50
3  
Appreciate this is a few years old, but for those just getting here, it's worth noting that the ".Take(x)" should appear before you do a ".Select()" or ".ToList()", as the ".Take(x)" will only be included in the generated SQL if it is before you enumerate the results. If it appears after this, then it will be done once the result set has been enumerated and is therefore a plain old Linq statement! – Bertie Apr 13 '12 at 10:45
show 3 more comments

Use the take method:

var foo = (from t in MyTable
           select t.Foo).Take(10);

In VB LINQ has a take expression:

Dim foo = From t in MyTable _
          Take 10 _
          Select t.Foo
share|improve this answer
7  
The little differences in LINQ between C# and VB are annoying. Why doesn't C# have a take expression like VB? That seems like an oversight. And VB's lack of anonymous Subs makes lambdas much less useful. – Adam Lassek Oct 10 '08 at 16:59
Just what I was looking for +1 – jasonco Nov 18 '09 at 8:13
+1 Just what I needed, too. And FWIW, seems that only the ten records actually come down the pipe. My SELECT would otherwise return an enormous amount of data, enough to throw an OutOfMemoryException after a painful delay. With Take( manageable-quantity ), no delay, no exception. – Bob Kaufman Jul 20 '11 at 21:05

Use the Take(int n) method:

var q = query.Take(10);
share|improve this answer

@Janei: my first comment here is about your sample ;)

I think if you do like this, you want to take 4, then applying the sort on these 4.

var dados =  from d in dc.tbl_News.Take(4) 
                orderby d.idNews descending
                select new 
                {
                    d.idNews,
                    d.titleNews,
                    d.textNews,
                    d.dateNews,
                    d.imgNewsThumb
                };

Different than sorting whole tbl_News by idNews descending and then taking 4

var dados =  (from d in dc.tbl_News
                orderby d.idNews descending
                select new 
                {
                    d.idNews,
                    d.titleNews,
                    d.textNews,
                    d.dateNews,
                    d.imgNewsThumb
                }).Take(4);

no ? results may be different.

share|improve this answer

I do like this:

 var dados =  from d in dc.tbl_News.Take(4) 
                orderby d.idNews descending

                select new 
                {
                    d.idNews,
                    d.titleNews,
                    d.textNews,
                    d.dateNews,
                    d.imgNewsThumb
                };
share|improve this answer
3  
The problem with this approach is that you will take 4 and then order them, when I suspect what you really want is to get the top 4 results. You need to do the take after the orderby, see Yanns comment. – Russell Troywest Sep 22 '10 at 19:41

You would use the Take(N) method.

share|improve this answer

This works well in C#

var q = from m in MyTable.Take(10)
        select m.Foo
share|improve this answer

Whether the take happens on the client or in the db depends on where you apply the take operator. If you apply it before you enumerate the query (i.e. before you use it in a foreach or convert it to a collection) the take will result in the "top n" SQL operator being sent to the db. You can see this if you run SQL profiler. If you apply the take after enumerating the query it will happen on the client, as LINQ will have had to retrieve the data from the database for you to enumerate through it

share|improve this answer
Array oList = ((from m in dc.Reviews
                           join n in dc.Users on m.authorID equals n.userID
                           orderby m.createdDate descending
                           where m.foodID == _id                      
                           select new
                           {
                               authorID = m.authorID,
                               createdDate = m.createdDate,
                               review = m.review1,
                               author = n.username,
                               profileImgUrl = n.profileImgUrl
                           }).Take(2)).ToArray();
share|improve this answer

Taking data of DataBase without sorting is the same as random take

share|improve this answer

I had to use Take(n) method, then transform to list, Worked like a charm:

    var listTest = (from x in table1
                     join y in table2
                     on x.field1 equals y.field1
                     orderby x.id descending
                     select new tempList()
                     {
                         field1 = y.field1,
                         active = x.active
                     }).Take(10).ToList();
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.