on .net core 2.1,
I have loaded the assembly to the application using ...services.AddMvcCore().AddApplicationPart([Assembly])
...But the assembly contains its DB context , the problem is that
I am not able to load the DBContext from the assembly, in a si...