EF Core 2.1 In memory DB not updating records
I'm using the in memory database provider for integration tests however I don't seem to be able to update a record. I've run the same code against a real SQL database and everything gets updated fine. Here is my test fixture code. Test Fixture: public class TestFixture<TStartup> : IDisposable { private readonly TestServer _testServer; public HttpClient TestClient { get; } public IDatabaseService DbContext { get { return _testServer.Host.Services.GetService<DatabaseService>(); } } public TestFixture() : this(Path.Combine("src")) { } protected TestFixture(string relativeTargetProjectPatentDir) {