⟩ You have a DataSet object named loanCustomersDataSet that contains customers serviced bythe loan department of ExamSlink Inc. You receive a second DataSet object namedassetCustomersDataSet that contains customers serviced by the asset management departmentof your company. Both objects have the same structure. You want to mergeassetCustomersDataSet into loanCustomersDataSet and preserve the original values inloanCustomersDataSet.Which code segment should you use?A. loanCustomersDataSet.Merge(assetCustomersDataSet);B. loanCustomersDataSet.Merge(assetCustomersDataSet, true);C. assetCustomersDataSet.Merge(loanCustomersDataSet);D. assetCustomersDataSet.Merge(loanCustomersDataSet, true);
B. loanCustomersDataSet.Merge(assetCustomersDataSet, true);