I'm trying to use my C# Domain DLL with Entity Framework in a VB6 Windows Form application. I can normally call my functions, but when it comes to Entity Framework, the application stops. It complains about the config file. After a while, I found out it was trying to get the config file from VB6 folder (VB6.exe.config) which does not exist. I was supposing that when I used the DLL, it would try reaching the app.config file within the same folder as it is located, but didn't happen. Well, I tried creating a new config file with that name (VB6.exe.config), but it didnt work at all. Entity Framework shows an exception inside its structure. It has to do with something like "System.Data.Entity.Internal.AppConfig".I'm trying to use my C# Domain DLL with Entity