Being able to @Inject an IterableProvider is pretty nifty but I'd much
prefer to simply inject arrays into the domain. So as opposed to:
@Inject
IterableProvider<Book> books;
we could simply do:
@InjectArray
Book[] books;
This is easy enough to do with a custom InjectionResolver but I find myself
wishing for it so often, over and over, might it make sense in the core? Or
as one of the blessed extensions? (Are there blessed extensions?)