Is Azure.Data.Tables.TableClient thread-safe?

Viewed 262

We are querying Azure storage tables via Azure.Data.Tables.TableClient from multiple threads. Is it already thread-safe or do we have to make it so? (The documentation neither mentions threads nor concurrency.)

1 Answers

Yes, TableClient is thread safe.

More on that topic is here

Related