We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
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
The text was updated successfully, but these errors were encountered:
Yes, it is bug, will be appling fix.
Sorry, something went wrong.
BCP Incorrect condition? #318
e780f12
No branches or pull requests
This if-statement is incorrect and causing field mapping errors.
I think it should be
https://github.com/Cinchoo/ChoETL/blame/994986e883174324d0d1f6a9147e1174f85a7fa0/src/ChoETL/Common/ChoUtility.cs#L2254
The text was updated successfully, but these errors were encountered: