Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BCP Incorrect condition? #318

Open
adaml881 opened this issue Apr 29, 2024 · 0 comments
Open

BCP Incorrect condition? #318

adaml881 opened this issue Apr 29, 2024 · 0 comments

Comments

@adaml881
Copy link

This if-statement is incorrect and causing field mapping errors.

if (columnMappings == null || columnMappings.Count == 0)
{
    foreach (KeyValuePair<string, string> keyValuePair in columnMappings)
        bcp.ColumnMappings.Add(keyValuePair.Key, keyValuePair.Value);
}

I think it should be

if (bcp.ColumnMappings == null || bcp.ColumnMappings.Count == 0)
{
    foreach (KeyValuePair<string, string> keyValuePair in columnMappings)
        bcp.ColumnMappings.Add(keyValuePair.Key, keyValuePair.Value);
}

https://github.com/Cinchoo/ChoETL/blame/994986e883174324d0d1f6a9147e1174f85a7fa0/src/ChoETL/Common/ChoUtility.cs#L2254

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant