System.Data.SqlClient.SqlCommand 有方法
BeginExecuteNonQuery
BeginExecuteReader
BeginExecuteXmlReader
和
EndExecuteNonQuery
EndExecuteReader
EndExecuteXmlReader
用于异步执行。
System.Data.IDbCommand 只有
ExecuteNonQuery
ExecuteReader
ExecuteXmlReader
仅用于同步操作。
有异步操作的接口吗?
另外,为什么没有 BeginExecuteScalar ?