We have a C# application that make use of the azure search index. We have an attribute in the index (say Name). This field is created with Keyword Analyzer. The requirement for me is if i search for George Joseph i should get only the records which have name George Joseph and it should not return names - George OR Joseph OR George Joseph Sr
If i write the search query as Name:("George Joseph")
, will the index return the results correctly?
Regards,
John