📄 doc.xml
字号:
</member>
<member name="M:Ordina.Data.SqlClient.CrudHelper.SqlHelper.BeginExecuteReader(System.Data.IDbTransaction,System.Data.CommandType,System.String,System.AsyncCallback,System.Object)">
<summary>
Create and prepare a command, and call ExecuteReader with the appropriate CommandBehavior.
</summary>
<param name="transaction">a valid IDbTransaction</param>
<param name="commandType">the CommandType (stored procedure, text, etc.)</param>
<param name="commandText">the stored procedure name or T-SQL command</param>
<param name="ac">callback object containing a delegate</param>
<param name="state">state object supplied by the client</param>
<returns>asynchronous result object</returns>
</member>
<member name="M:Ordina.Data.SqlClient.CrudHelper.SqlHelper.BeginExecuteReader(System.Data.IDbTransaction,System.Data.CommandType,System.String,System.AsyncCallback,System.Object,System.Data.IDataParameter[])">
<summary>
Create and prepare a command, and call ExecuteReader with the appropriate CommandBehavior.
</summary>
<param name="transaction">a valid IDbTransaction</param>
<param name="commandType">the CommandType (stored procedure, text, etc.)</param>
<param name="commandText">the stored procedure name or T-SQL command</param>
<param name="ac">callback object containing a delegate</param>
<param name="state">state object supplied by the client</param>
<param name="commandParameters">an array of IDataParameters used to execute the command</param>
<returns>asynchronous result object</returns>
</member>
<member name="M:Ordina.Data.SqlClient.CrudHelper.SqlHelper.BeginExecuteReader(System.Data.IDbTransaction,System.String,System.AsyncCallback,System.Object,System.Object[])">
<summary>
Execute a stored procedure via a command (that returns a resultset) against the specified
IDbTransaction using the provided parameter values. This method will query the database to discover the parameters for the
stored procedure (the first time each stored procedure is called), and assign the values based on parameter order.
</summary>
<param name="transaction">a valid IDbTransaction</param>
<param name="spName">the name of the stored procedure</param>
<param name="ac">callback object containing a delegate</param>
<param name="state">state object supplied by the client</param>
<param name="parameterValues">an array of objects to be assigned as the input values of the stored procedure</param>
<returns>asynchronous result object</returns>
</member>
<member name="M:Ordina.Data.SqlClient.CrudHelper.SqlHelper.EndExecuteReader(System.IAsyncResult)">
<summary>
Receive the result at the end of an asynchronous call.
</summary>
<param name="result">asynchronous result object</param>
<returns>a IDataReader containing the resultset generated by the command</returns>
</member>
<member name="M:Ordina.Data.SqlClient.CrudHelper.SqlHelper.ExecuteXmlReader(System.Data.IDbConnection,System.Data.IDbTransaction,System.Data.CommandType,System.String,System.Data.IDataParameter[])">
<summary>
Execute a command to receive an XML reader.
Take care that, once opened, the connection remains open afterwards.
</summary>
<param name="connection">a valid IDbConnection</param>
<param name="transaction">a valid IDbTransaction (or null)</param>
<param name="commandType">the CommandType (stored procedure, text, etc.)</param>
<param name="commandText">the stored procedure name or T-SQL command using "FOR XML AUTO"</param>
<param name="commandParameters">an array of IDataParameters used to execute the command</param>
<returns>an XmlReader containing the resultset generated by the command</returns>
</member>
<member name="M:Ordina.Data.SqlClient.CrudHelper.SqlHelper.ExecuteXmlReader(System.String,System.Data.CommandType,System.String)">
<summary>
Execute a command to receive an XML reader.
Take care that, once opened, the connection remains open afterwards.
</summary>
<param name="connectionString">a valid connection string for a connection yet to be opened</param>
<param name="commandType">the CommandType (stored procedure, text, etc.)</param>
<param name="commandText">the stored procedure name or T-SQL command using "FOR XML AUTO"</param>
<returns>an XmlReader containing the resultset generated by the command</returns>
</member>
<member name="M:Ordina.Data.SqlClient.CrudHelper.SqlHelper.ExecuteXmlReader(System.String,System.Data.CommandType,System.String,System.Data.IDataParameter[])">
<summary>
Execute a command to receive an XML reader.
</summary>
<param name="connectionString">a valid connection string for a connection yet to be opened</param>
<param name="commandType">the CommandType (stored procedure, text, etc.)</param>
<param name="commandText">the stored procedure name or T-SQL command using "FOR XML AUTO"</param>
<param name="commandParameters">an array of IDataParameters used to execute the command</param>
<returns>an XmlReader containing the resultset generated by the command</returns>
</member>
<member name="M:Ordina.Data.SqlClient.CrudHelper.SqlHelper.ExecuteXmlReader(System.String,System.String,System.Object[])">
<summary>
Execute a stored procedure via a command (that returns a resultset) against the specified IDbConnection
using the provided parameter values. This method will query the database to discover the parameters for the
stored procedure (the first time each stored procedure is called), and assign the values based on parameter order.
Take care that, once opened, the connection remains open afterwards.
</summary>
<param name="connectionString">a valid connection string for a connection yet to be opened</param>
<param name="spName">the name of the stored procedure using "FOR XML AUTO"</param>
<param name="parameterValues">an array of objects to be assigned as the input values of the stored procedure</param>
<returns>an XmlReader containing the resultset generated by the command</returns>
</member>
<member name="M:Ordina.Data.SqlClient.CrudHelper.SqlHelper.ExecuteXmlReader(System.Data.IDbConnection,System.Data.CommandType,System.String)">
<summary>
Execute a command to receive an XML reader.
Take care that, once opened, the connection remains open afterwards.
</summary>
<param name="connection">a valid IDbConnection</param>
<param name="commandType">the CommandType (stored procedure, text, etc.)</param>
<param name="commandText">the stored procedure name or T-SQL command using "FOR XML AUTO"</param>
<returns>an XmlReader containing the resultset generated by the command</returns>
</member>
<member name="M:Ordina.Data.SqlClient.CrudHelper.SqlHelper.ExecuteXmlReader(System.Data.IDbConnection,System.Data.CommandType,System.String,System.Data.IDataParameter[])">
<summary>
Execute a command to receive an XML reader.
Take care that, once opened, the connection remains open afterwards.
</summary>
<param name="connection">a valid IDbConnection</param>
<param name="commandType">the CommandType (stored procedure, text, etc.)</param>
<param name="commandText">the stored procedure name or T-SQL command using "FOR XML AUTO"</param>
<param name="commandParameters">an array of IDataParameters used to execute the command</param>
<returns>an XmlReader containing the resultset generated by the command</returns>
</member>
<member name="M:Ordina.Data.SqlClient.CrudHelper.SqlHelper.ExecuteXmlReader(System.Data.IDbConnection,System.String,System.Object[])">
<summary>
Execute a stored procedure via a command (that returns a resultset) against the specified IDbConnection
using the provided parameter values. This method will query the database to discover the parameters for the
stored procedure (the first time each stored procedure is called), and assign the values based on parameter order.
Take care that, once opened, the connection remains open afterwards.
</summary>
<param name="connection">a valid IDbConnection</param>
<param name="spName">the name of the stored procedure using "FOR XML AUTO"</param>
<param name="parameterValues">an array of objects to be assigned as the input values of the stored procedure</param>
<returns>an XmlReader containing the resultset generated by the command</returns>
</member>
<member name="M:Ordina.Data.SqlClient.CrudHelper.SqlHelper.ExecuteXmlReader(System.Data.IDbTransaction,System.Data.CommandType,System.String)">
<summary>
Execute a command to receive an XML reader.
Take care that, once opened, the connection remains open afterwards.
</summary>
<param name="transaction">a valid IDbTransaction</param>
<param name="commandType">the CommandType (stored procedure, text, etc.)</param>
<param name="commandText">the stored procedure name or T-SQL command using "FOR XML AUTO"</param>
<returns>an XmlReader containing the resultset generated by the command</returns>
</member>
<member name="M:Ordina.Data.SqlClient.CrudHelper.SqlHelper.ExecuteXmlReader(System.Data.IDbTransaction,System.Data.CommandType,System.String,System.Data.IDataParameter[])">
<summary>
Execute a command to receive an XML reader.
Take care that, once opened, the connection remains open afterwards.
</summary>
<param name="transaction">a valid IDbTransaction</param>
<param name="commandType">the CommandType (stored procedure, text, etc.)</param>
<param name="commandText">the stored procedure name or T-SQL command using "FOR XML AUTO"</param>
<param name="commandParameters">an array of IDataParameters used to execute the command</param>
<returns>an XmlReader containing the resultset generated by the command</returns>
</member>
<member name="M:Ordina.Data.SqlClient.CrudHelper.SqlHelper.ExecuteXmlReader(System.Data.IDbTransaction,System.String,System.Object[])">
<summary>
Execute a stored procedure via a command (that returns a resultset) against the specified
IDbTransaction using the provided parameter values. This method will query the database to discover the parameters for the
stored procedure (the first time each stored procedure is called), and assign the values based on parameter order.
Take care that, once opened, the connection remains open afterwards.
</summary>
<param name="transaction">a valid IDbTransaction</param>
<param name="spName">the name of the stored procedure</param>
<param name="parameterValues">an array of objects to be assigned as the input values of the stored procedure</param>
<returns>an XmlReader containing the resultset generated by the command</returns>
</member>
<member name="M:Ordina.Data.SqlClient.CrudHelper.SqlHelper.BeginExecuteXmlReader(System.String,System.Data.CommandType,System.String,System.AsyncCallback,System.Object)">
<summary>
Execute a command to receive an XML reader.
Take care that, once opened, the connection remains open afterwards.
</summary>
<param name="connectionString">a valid connection string for a connection yet to be opened</param>
<param name="commandType">the CommandType (stored procedure, text, etc.)</param>
<param name="commandText">the stored procedure name or T-SQL command using "FOR XML AUTO"</param>
<param na
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -