Skip to content

Instantly share code, notes, and snippets.

@adilakhter
Created April 10, 2013 16:21
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 adilakhter/5356122 to your computer and use it in GitHub Desktop.
Save adilakhter/5356122 to your computer and use it in GitHub Desktop.
public override void Initialize(string name, NameValueCollection config)
{
name = string.IsNullOrEmpty(name) ? "SqlPersistanceProvider" : name.Trim();
base.Setup("SqlPersistanceProvider", "SqlPersistanceProvider saves the T to SQL DB", config);
_PersistenceMediaPath = config[PersistenceMediaPathKeyName];
//Call the base class to initialize
base.Initialize(name, config);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment