I have a set of objects of type Idea
public class Idea
{
public string Title { get; set; }
public string Body { get; set; }
}
Incase anyone else comes across this. Raven 3 has a Search() extension method that allows for substring searching.
A couple of gotchas:
Search()
was the added directly to Query()
(i.e. without any Where()
, OrderBy()
, etc between them)Hope this saves someone some frustration.