NEST 6.6 .
Is the code equal
var r = new AggregationContainerDescriptor<DormantAccountEntry>();
r.Composite(compositeName,
co => co
.Sources(so => so.Terms("OrgId", t => t.Field(_authAlias + "OrgId")))
.Aggregations(fm => fm.Max("ActDate", md => md.Field(_authAlias + "ActDate"))));
equal to ?
var r = new AggregationContainerDescriptor<DormantAccountEntry>();
r.Composite(compositeName,
co => co
.Sources(so => so.Terms("OrgId", t => t.Field(_authAlias + "OrgId")))
.Aggregations(fm => fm.Max("ActDate", md => md.Field(_authAlias + "ActDate")))
.After(null));
I mean when I pass null to After function to the code without After function ?
Thanks for the support.