public bool UpdateEntity()

in src/ApiForFhirMigrationTool.Function/Models/AzureTableMetadataStore.cs [22:29]


        public bool UpdateEntity(TableClient metadataTableClient, ITableEntity tableEntity, CancellationToken cancellationToken = default)
        {
                metadataTableClient.UpdateEntity(
                    tableEntity,
                    tableEntity.ETag,
                    cancellationToken: cancellationToken);
                return true;
        }