标签: c# sql
如果连接关闭,是否会抛出特定的异常?我正在编写一个接受SqlConenction对象的方法,我想检查与State属性的连接:
public void MyMethod(SqlConnection sql) { if (sql.State != ConnectionState.Open) { //Throw the exception } }