How do I do this
Select top 10 Foo from MyTable
in Linq to SQL?
This way it worked for me:
var noticias = from n in db.Noticias.Take(6) where n.Atv == 1 orderby n.DatHorLan descending select n;