Skip to content

Instantly share code, notes, and snippets.

@talkingdotnet
Created February 27, 2018 05:50
Show Gist options
  • Save talkingdotnet/43a6c9e2c2e4d7a849922962db537579 to your computer and use it in GitHub Desktop.
Save talkingdotnet/43a6c9e2c2e4d7a849922962db537579 to your computer and use it in GitHub Desktop.
public class MySQLDataImport
{
private const int cBatchCount = 2000;
private string _connectionString = "";
private string _directoryPath = "";
public MySQLDataExport(IConfigurationRoot config)
{
_connectionString = config["AppSettings:MySQLConnectionString"];
_directoryPath = config["AppSettings:DestinationDirectoryPath"];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment