FdoToolbox.Core.ETL.Specialized.FdoClassCopyOptions.FdoClassCopyOptions C# (CSharp) Method

FdoClassCopyOptions() public method

Initializes a new instance of the FdoClassCopyOptions class.
public FdoClassCopyOptions ( string sourceConnectionName, string targetConnectionName, string sourceSchema, string sourceClass, string targetSchema, string targetClass ) : System
sourceConnectionName string Name of the source connection.
targetConnectionName string Name of the target connection.
sourceSchema string The source schema.
sourceClass string The source class.
targetSchema string The target schema.
targetClass string The target class.
return System
        public FdoClassCopyOptions(string sourceConnectionName, string targetConnectionName, string sourceSchema, string sourceClass, string targetSchema, string targetClass)
        {
            _SourceConnectionName = sourceConnectionName;
            _TargetConnectionName = targetConnectionName;
            _sourceClass = sourceClass;
            _sourceSchema = sourceSchema;
            _targetClass = targetClass;
            _targetSchema = targetSchema;

            _propertyMappings = new NameValueCollection();
            _expressionAliasMap = new NameValueCollection();
            _expressionMappings = new NameValueCollection();

            _rules = new Dictionary<string,FdoDataPropertyConversionRule>();
        }