If I have learned anything over the years, it's that removing the braces anywhere is the introduction of a bug during a rewrite waiting to happen.
Statemends like :
list.Where(e => e.Property == ExpectedValue).Select(e => e.Property)
list.Where([](auto e) { return e.Property == ExpectedValue; }).Select([](auto e) { return e.Property; });