AccidentalFish.ApplicationSupport.Logging.QueueLogger.Model.LogTableItem.SetPartitionAndRowKeyForLogByDate C# (CSharp) Method

SetPartitionAndRowKeyForLogByDate() public method

public SetPartitionAndRowKeyForLogByDate ( ) : void
return void
        public void SetPartitionAndRowKeyForLogByDate()
        {
            PartitionKey = $"{LoggedAt.Year:D4}{LoggedAt.Month:D2}{LoggedAt.Day:D2}";
            RowKey = $"{LoggedAt.Ticks:D19}{Guid.NewGuid()}";
        }