Base solution for your next web application

Activities of "laasri"

You can solve this by overriding Dispose method in your Test DbContext class: :)

public class TestDbContext : DbContext { public TestDbContext() : base("Name=TestConnection") {

  }

...... protected override void Dispose(bool disposing) { Dispose(); base.Dispose(disposing); } }

Showing 1 to 1 of 1 entries