I am trying to use the EF7 InMemory provider for unit tests, but the persistent nature of the InMemory database between tests is causing me problems.
The following code d
The following call will clear the in-memory datastore.
_context.Database.EnsureDeleted();