2 writes to connection
System.Data.Linq (2)
SqlClient\SqlConnectionManager.cs (2)
30this.connection = con; 93this.connection = null;
13 references to connection
System.Data.Linq (13)
SqlClient\SqlConnectionManager.cs (13)
42if (this.connection.State == ConnectionState.Closed) { 43this.connection.Open(); 54this.connection.EnlistTransaction(System.Transactions.Transaction.Current); 61return this.connection; 76get { return this.connection; } 91if (this.connection != null && this.disposeConnection) { 92this.connection.Dispose(); 113if (this.connection != value.Connection) { 136if (this.connection != null && this.connection.State != ConnectionState.Closed) { 137this.connection.Close(); 156SqlConnection scon = this.connection as SqlConnection; 163SqlConnection scon = this.connection as SqlConnection;