Can you please tell how to perform simple full-text search in RavenDb. The database is stored document: Movie {Name = \"Pirates of the Carribean\"}. I
Boris, Rob's answer has the right index, but it is a bit awkward for querying. You can do that using:
session.Query() .Search(x=>x.Name, searchTerms) .ToList()
That will