Skip to content

Instantly share code, notes, and snippets.

@awswithdotnet
Created March 3, 2022 18:32
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 awswithdotnet/ca0434678cc5cb147ba2d280c481bfe3 to your computer and use it in GitHub Desktop.
Save awswithdotnet/ca0434678cc5cb147ba2d280c481bfe3 to your computer and use it in GitHub Desktop.
ssms-ps Api ParametersController GetParameter
[HttpGet]
public IActionResult GetParameter(){
string parameter1 = _configuration["test-key"];
string parameter2 = _configuration["test-key2"];
string parameter3 = _configuration["test-key3"];
return Ok(new List<string> { parameter1, parameter2, parameter3 });
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment