0
votes

Is there any provision to receive the searched result fields data summed up as a single integer

For example, if I am searching for 'x' person's bank details and I want the amount he spent using his credit card then the result I need is the sum of all credit card transactions

I couldn't find any documentation. If we cannot add then what is the best way to approach?

Thanks for your help.

1

1 Answers

0
votes

Unfortunately, Azure Search doesn't do any such calculation on the response. However, you can easily implement that on the client side with the response from the service.

Nate