I am looking at Azure Search for a message service. Very simplified, we have an Azure App Service (running .NET) and two tables on SQL Azure:
- Message: Id, Subject, Body, [...]
- MessageRecipient: Id, MessageId, UserId, [...]
One message has 1:N recipients.
I want an index to search the Subject and Body of Message, but the results must be filtered on the current user being a recipient of the message. I can't seem to find a good way to implement this so it scales well to high volumes. Returning all search results from the index and then filtering on UserId in my application would generate a lot of unnecessary overhead. And indexing each message duplicated for each UserId is even worse.
How would you best implement a recipient-filtered message search?
Thanks, TGM