79377101

Date: 2025-01-22 09:18:02
Score: 0.5
Natty:
Report link

I was struggeling with the same. Three things you can try:

  1. Enherit the ITableEntity on your PersistedPerson class, Set PartitionKey, RowKey and Timestamp properties.
  2. Make sure Timestamp is in UTC time.
  3. Specify the Type in the AddEntityAsync like this: await tableClient.AddEntityAsync(persistedModel, cancellationToken);
Reasons:
  • No code block (0.5):
Posted by: nivs1978