Are you wanting only a single object? If you are confident there is just one item in the table that meets your criteria, you could say
context.People.Single(m => m.Name == "Tim");
If there could be more than one and you only want the first, then use the .First() extension method instead. The difference is that Single will throw an exception if more than one record matches your criteria. First simple does what it says, it will take the first of any number of records.
(Also consider the SingleOrDefault and FirstOrDefault methods if there may be no suitable records in the table.)
Edit: Apparently .Single is not supported in the Linq-To-Entities framework, but First is.