public TableEntity GetEntity()

in src/ApiForFhirMigrationTool.Function/Models/AzureTableMetadataStore.cs [31:39]


        public TableEntity GetEntity(TableClient metadataTableClient, string partitionKey, string rowKey, CancellationToken cancellationToken = default)
        {
            TableEntity getEntity = metadataTableClient.GetEntity<TableEntity>(
                    partitionKey,
                    rowKey,
                    cancellationToken: cancellationToken);

            return getEntity;
        }