Linq to Objects has overloaded Select method
customers.Select((c,i) => new { Customer = c, Index = i })
.Where(x => x.Customer.ID == 150)
.Select(x => x.Index);
Keep in mind, that you should have in-memory List<Customer>
to use this Linq to Objects method.