Created
February 27, 2018 05:50
-
-
Save talkingdotnet/43a6c9e2c2e4d7a849922962db537579 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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