Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
AI OnAI Off
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
Having:
public class PageType : PageData
{
public virtual string DontWannaSearch { get; set; }
public virtual BlockType BlockProperty { get; set; }
}
public class BlockType : BlockData
{
public virtual XhtmlString Description { get; set; }
}
How do I make sure that a search is only performed in fields PageType.Name and PageType.BlockProperty.Description?
Doesn't seem that .InField(x=>x.BlockProperty.Description) helps?
Best regards
Miroslav