Entity collections expose a Dispose method, so should I be wrapping them within a Using block? None of the examples I've seen so far in the documentation do this.
Please advise.
the Dispose method is inherited by default from System.ComponentModel, so It's not necessary to dispose the collection yourself.
goose,
Thanks for your response.