SQL Server books online states the following about visibility (scope?) of temporary tables:
Temporary Tables
You can create local and global temporary tables. Local temporary tables are visible only in the current session; global temporary tables are visible to all sessions.
I want to understand how the scope of the global temporary table relates to an ADO.NET database connection. Will a global temp table created during an ADO.NET connection persist beyond that connection for future connections to use? What about parallel ADO.NET connections that start and stop together?
I'm not seeing the association between Microsoft's use of the word session in SQL context and the word connection in ADO.NET context, if they're one in the same or not.