I would like to use the "Query Builder Methods" on my DbContext like following:
using (var context = new MyDbContext())
{
    var query = context.MyEntities.Where("Id = @id", new ObjectParameter("id", 1));
}
But it cannot resolve this specific overload of Where. What am I missing here?