Looking at the docs we should be able to create a new source filter like so
new SearchRequest<Project>
{
Source = new SourceFilter
{
Include = Fields<Project>(p => p.Name, prop => prop.StartedOn)
}
}
The issue I'm facing is that Fields isn't typed and doesn't have a constructor.
How do I go about making a Fields for use in sourceFilters, queries etc?