I am looking for some tips on how to reduce the dependency of the Entity Framework library library on application files or web.config. My application contains an Entity Data ADO.NET data model.
I am currently referencing this library in a web project, but for this I have to add the connection string to the web.config web application before deployment.
Now I have a requirement to use a standalone DLL, and I can not change the parent project configuration files to include in my EF library.
What would be the best way to keep the connection string, but keep the integrity of my edmx and where should I refer?
source share