在C#中,可以使用System.Data.ParameterDirection枚舉定義ParameterDirection參數類型。這個枚舉包含以下值:
Input:指定參數是一個輸入參數。
Output:指定參數是一個輸出參數。
InputOutput:指定參數是一個輸入輸出參數。
ReturnValue:指定參數是一個返回值參數。
可以在代碼中使用這些枚舉值來指定ParameterDirection參數類型。例如,以下代碼定義了一個命令對象和一個參數對象,并將參數對象的參數類型設置為輸入參數:
using System;
using System.Data;
using System.Data.SqlClient;
class Program
{
static void Main()
{
// 創建連接對象
SqlConnection connection = new SqlConnection("Connection String");
// 創建命令對象
SqlCommand command = new SqlCommand("Procedure Name", connection);
command.CommandType = CommandType.StoredProcedure;
// 創建參數對象
SqlParameter parameter = new SqlParameter();
parameter.ParameterName = "@ParameterName";
parameter.Value = "Parameter Value";
parameter.Direction = ParameterDirection.Input;
// 將參數對象添加到命令對象的參數集合
command.Parameters.Add(parameter);
// 執行命令
connection.Open();
command.ExecuteNonQuery();
connection.Close();
}
}
在上面的代碼中,參數對象的Direction屬性被設置為ParameterDirection.Input,表示該參數是一個輸入參數。