why connection string is not found from my class library to another class library?
问题 I am having the architecture like this : Where MVC layer is the presentation layer. EF is class library and Repository is another class library.I am trying to insert data to database from repository by creating the EF context object. Added EF reference into Repository class library. EF having the edmx file. its app.config having the connection string generated by EF. code is : public bool CreateUser(User _user) { context.Users.Add(_user); context.SaveChanges(); return true; } but while