As I'm new to RavenDB. I need to know the usual method of data retrievals using RavenDB. My question is. Can I retrieve a particular document from db without using the Id?
Now I am retrieving all the documents into a list and then manipulating it to get the particular document. The operation seems to be costly as I fetch all the documents every time.
Is there solution for retrieving the document by values other than Id?
Thank you.