So I know the query notation
var word = from s in stringList
           where s.Length == 3
           select s;
is equivalent to the dot notation
var word = stringList
           .Where(s => s.Length == 3)
           .Select(s => s);
But how do you convert this dot notation to a query notation?
var word = wordsList
           .Single(p => p.Id == savedId);
I couldn't find much resources on Google.