Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
I have published the version 0.3 of my Simple Search for Umbraco.
This includes only two additional functions which gives you the possibillity to add your own Search definition on runtime.
e.g.:
var sd = new SearchDefinition { IsDefault = true, IterationType = IterationType.IterateAll, Name = "MySearchDefinition" };var dt = new DocumentType { Alias = "blog.com.Post", Category = "Blog Post", TestNodeName = true, IncludeChildNodes = false };sd.DocumentTypes.Add(dt);dt.Properties.Add(new Property { Alias = "bodyText", ComparisonType = ComparisonType.String, Comparison = Comparison.Contains });dt.Properties.Add(new Property { Alias = "umbracoTags", ComparisonType = ComparisonType.String, Comparison = Comparison.Contains });var searcher = new Searcher();searcher.Search(sd, "PHRASE TO SEARCH", null);
Cheers,Thomas
is working on a reply...
This forum is in read-only mode while we transition to the new forum.
You can continue this topic on the new forum by tapping the "Continue discussion" link below.
Continue discussion
Simple Search 4 Umbraco v0.3 published
I have published the version 0.3 of my Simple Search for Umbraco.
This includes only two additional functions which gives you the possibillity to add your own Search definition on runtime.
e.g.:
Cheers,
Thomas
is working on a reply...
This forum is in read-only mode while we transition to the new forum.
You can continue this topic on the new forum by tapping the "Continue discussion" link below.