質問

I have a 4 tier web api project :

Web Api - Entities - Business Logic - Data Access

..and I am using code first with an empty context constructor so the connection string is picked up from the web.config in my Web Api project :

 public MyContext() : base()
    {

    }

Question is, can I read the serverName and databaseCatalog from a .settings file and modify the connection string at runtime?

役に立ちましたか?

解決

I ended up building the connection string in the business layer and passing it down through layers in the constructor.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top