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