I'm looking to test my code with AutoFixture. I feel that the tool has potential but it is getting hard to effectively setup just to run my first test.
I'm using EF6 code first. Then, the most logical is that AutoFixture.AutoEF will do all the work for you but it is not the case because you need to explicitly setup your DbSet's objects. I found the following solution on the web but the problem now is that I just cannot setup an open generic type. So below is my (incomplete) code. What could I do to finish this?
Thank you.