vote up 9 vote down star
2

How do I do this

Select top 10 Foo from MyTable

in Linq to SQL?

flag

80% accept rate

4 Answers

vote up 5 vote down check
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.

link|flag
1  
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
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
thanks, ALassek. I didn't sleep last night so i appreciate the catch in my grammar. – David Alpert Oct 10 '08 at 19:19
vote up 17 vote down

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
link|flag
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 at 8:13
vote up 5 vote down

Use the Take(int n) method.

var q = query.Take(10);
link|flag
vote up 0 vote down

You would use the Take(N) method.

link|flag

Your Answer

Get an OpenID
or

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