Jay is talking about the server side of things in .NET. Perhaps you are talking about the client-side JavaScript? If so, read on; if not ... stick with Jay's answer.
In our client-side JavaScript apps we often write a module that insulates the ViewModels from the Breeze EntityManager. Such a module might be called "dataservice.js" in one sample; it could be called "datacontext.js" in another sample. The concept is the same: you're trying to encapsulate the data access details (which involve BreezeJS components such as the EntityManager) so that the ViewModels work with a simpler, more intentional interface.
These JS modules are not part of Breeze. They are merely a recommended approach to structuring your application.
You can write as many flavors of these "datacontexts" as you like. Each can have its own EntityManager instance, which caches its own set of entities and you could think of that cache as "smaller [in memory] database" if you like. this kind of "contextualizing" for distinct workflows is pretty common in business apps. You'll see us talk about "sandbox editors" for example; each sandbox is its own "context".
You often need to copy entities from one "context" to another (rather than round-trip to the server). That's easy to do with the EntityManager.exportEntities and EntityManager.importEntities methods. You'll find examples in the DocCode sample.