Hi Dan,
How should I do multiple Record Locator Search?
I've tried to create multiple JObjects, but it didn't work. Multiple " InvoiceSearch.Param_RecordLocator" also not working. Below example of a single Record Locator search, can you direct me on how to do a multiple search?
await invoiceSearch.Search(
new JObject
{
{ InvoiceSearch.Param_IssueDateFrom, new JValue(new DateTime(2020, 5, 1)) },
{ InvoiceSearch.Param_IssueDateTo, new JValue(new DateTime(2020, 6, 30)) },
{ InvoiceSearch.Param_InvoiceType, new JArray(Invoice.InvoiceType_Sale)},
{ InvoiceSearch.Param_RecordLocator, "KGJF3U"},
{
InvoiceSearch.Param_IncludeCols,
new JArray(InvoiceSearch.Col_Invoice_InvoiceNo)
}
}
).ConfigureAwait(false);
Alex K.