November Happy Hour will be moved to Thursday December 5th.
November Happy Hour will be moved to Thursday December 5th.
You can exclude the field for a specific type by using conventions or you can exclude a field in the default search field.
http://world.episerver.com/Documentation/Items/Developers-Guide/EPiServer-Find1/75/Integration/EPiServer-75-CMS/Indexing/
Thanks for the reply!
Well, I still want to index it, so no conventions.
Exclude a field in the default search, I am not sure what this is, can you describe?
I would still like to be able to search in this field at some cases.
I think the best way in this case is to use .InField(x => x.PropertyName) to specify which properties you want to search. You could have multiple .InField(..) in a query, or you could use .InFields(..)
Well, I am searching in a baseclass over multiple types, I don't want to specify on a pagetype level... the fields I want to search in differ from type to type, but the field I would like to ignore is common for all.
This scenario can not be that unusual?
Hi,
I would like to exclude search from looking into specific fields, for example the "ChangedBy" property
Is there an extension like below available? Or how do I do it properly?
var result = SearchClient.Instance.Search<StandardPage>()
.For(query)
.ExcludeField(x => x.ChangedBy)
.FilterForVisitor()
.Track()
.GetPagesResult();