Is the in-memory collection intended to be read only? It will make a difference in what you end up using.
My recommendations -
Read only: use ConcurrentDictionary
Read & Write: use DataSet
The best concurrent, or Thread-Safe, model, in my opinion, would be the DataSet - see: ADO.Net Tackle Data Concurrency and MSDN DataSet. The DataSet was developed to handle in-memory data storage for multiple clients. NOTE what MSDN says:
This type is safe for multithreaded read operations. You must synchronize any write operations.
You do have an alternative to a DataSet, as Brian Gideon suggests - a ConcurrentDictionary.
With a DataReader, you can fill custom objects, like DataItem, directly from the DataReader.
Either way, both of these solutions will allow you quick and concurrent in-memory data access.