var options = new DbContextOptionsBuilder() .UseInMemoryDatabase(databaseName: "Db") .Options; var context = new MovieDbContext(options);