I would like to get a list of 3 objects within a query Link.
var listaPessoas = from i in this.Context.CreateObjectSet<listaPessoas>()
select i;
...
listaPessoas = listaPessoas .Where(x => x.Nome.Contains(filtro.Nome);
...
return listaPessoas;
However, in this return I would like to get only 3 objects (always random) inside elements in listaPessoas