Skip to content

Instantly share code, notes, and snippets.

@SimonDoy
Created May 24, 2016 20:20
Embed
What would you like to do?
The initial database configuration file
using System.Collections.Specialized;
using System.Configuration;
using System.Linq;
namespace ITSP365.InvoiceFormApp.Api.DataAccess
{
internal class DatabaseConfig
{
internal string DatabaseEndPoint {
get
{
var value = ConfigurationManager.AppSettings["documentDb:EndPoint"];
return value;
}
}
internal string PrimaryKey
{
get
{
var value = ConfigurationManager.AppSettings["documentDb:PrimaryKey"];
return value;
}
}
internal string SecondaryKey
{
get
{
var value = ConfigurationManager.AppSettings["documentDb:SecondaryKey"];
return value;
}
}
internal string DatabaseName
{
get
{
var value = ConfigurationManager.AppSettings["documentDb:DatabaseName"];
return value;
}
}
internal string DocumentCollectionName
{
get
{
var value = ConfigurationManager.AppSettings["documentDb:DocumentCollectionName"];
return value;
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment