Tool helps to transfer entity records between environments by using FetchXml queries.
$ dotnet add package DataMigrationUsingFetchXmlThis utility allows the user to migrate data of the entity from source to target.
The user needs to define FetchXml queries for each entity to which data should be migrated.

The utility has the following input parameters:
Select Target Instance button.Log.txt file.For the lookup fields, the user can specify the search by name instead of searching by id. For that, it’s needed to add the SearchByPrimaryField="true" attribute in the FetchXml attribute tag.
For example
<attribute name="transactioncurrencyid" SearchByPrimaryField="true" />

Note Link entities can be used only for filtering or sorting purposes. For field values migration each FetchXml grid line should represent only one entity.
27.8K