Closed sagsgr8 closed 5 years ago
Hello @sagsgr8 ,
Thank you for reporting, we will look at it.
Best Regards,
Jonathan
Hello @sagsgr8 ,
It's possible to use a composite key by separating each column with a semicolon
operation.AutoMapKeyName = "ColumnIntTest;ColumnStringTest";
However, I'm not sure that's what you are looking for.
Are you asking to be able to provide multiple key combinations?
For example:
And the join clause will look something like this:
ON DestinationTable.ID = StagingTable.ID
OR (DestinationTable.Code = StagingTable.Code AND DestinationTable.Email = StagingTable.Email)
If that's the case, do you mind if you need to hardcode the previous SQL? It might be more flexible on your side for this special case than having to create some group.
operation.AutoMapKeyName = "ColumnIntTest;ColumnStringTest";
This should be in the documentation.
Hi,
We require to use the multiple key mapping (How to assign multiple/group of automapkeyname) in bulk merge operation.
We want to check multiple combination of columns to validate while uploading data. If record exist then it should check for combination of multiple columns & then update the existing record.