Skip to content

Instantly share code, notes, and snippets.

@corespider
Created May 23, 2020 16:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save corespider/6f63799e5556145d2ddc4cf83e02e897 to your computer and use it in GitHub Desktop.
Save corespider/6f63799e5556145d2ddc4cf83e02e897 to your computer and use it in GitHub Desktop.
Core Spider- Set Connection String Globally
public IConfigurationRoot ConfigurationRoot { get; set; }
public static string ConnectionString { get; private set; }
public Startup(IConfiguration config,IWebHostEnvironment env)
{
ConfigurationRoot = new ConfigurationBuilder()
.SetBasePath(env.ContentRootPath)
.AddJsonFile("appSettings.json")
.Build();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment