AngularAzureSearch.WebAPI.PartitionResolvers.SpilloverPartitionResolver.ResolveForCreate C# (CSharp) Method

ResolveForCreate() public method

Returns the collection to create this document. Returns the last collection.
public ResolveForCreate ( object partitionKey ) : string
partitionKey object The partition key for the create.
return string
        public string ResolveForCreate(object partitionKey)
        {
            this.CreateCollectionIfRequired();
            return this.CollectionLinks.Last();
        }