Passing null into After(afterKey) with Composite aggregation

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.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.