using System;
using System.Configuration;
namespace ORMBiz{
/// <summary>
/// Wraps the app.config file by exposing it's key/value pairs
/// as static properties.
/// </summary>
public class Config
{
private Config(){}
/// <summary>
/// Wraps the 'dsn' entry in the app.config file.
/// </summary>
public static string Dsn { get { return ConfigurationSettings.AppSettings["dsn"]; } }
public static bool GenerateVbCode = false;
public static bool IgnoreStoredProcedures = false;
}
}
|