SqlCommand-SqlConnection Using Disposing issue
问题 According to MSDN If the IDisposable resource of the nested inner using statement contains the resource of the outer using statement, the Dispose method of the nested resource releases the contained resource. MSDN (http://msdn.microsoft.com/en-us/library/ms182334.aspx) => Example Nested using statements (Using in Visual Basic) can cause violations of the CA2202 warning. If the IDisposable resource of the nested inner using statement contains the resource of the outer using statement, the