问题
I can't seem to find any documentation regarding thread safety...
In particular - is the Database
class (and subclasses) thread safe
How would I find this out for myself? Are there references to thread safety for classes on the MSDN site?
回答1:
Yes, instances of the Database
class are thread-safe. However, objects created by it (such as SqlDataReader
) are not.
来源:https://stackoverflow.com/questions/2872023/is-the-microsoft-enterprise-library-data-access-application-block-thread-safe