在C#中,使用SqlParameter與存儲過程進行交互是一種常見的做法。以下是如何在存儲過程中使用SqlParameter的步驟:
using System.Data.SqlClient;
string connectionString = "your_connection_string";
SqlConnection connection = new SqlConnection(connectionString);
connection.Open();
string storedProcedureName = "your_stored_procedure_name";
SqlCommand command = new SqlCommand(storedProcedureName, connection);
SqlParameter parameter1 = new SqlParameter("@Parameter1", SqlDbType.Int);
parameter1.Value = 1;
command.Parameters.Add(parameter1);
SqlParameter parameter2 = new SqlParameter("@Parameter2", SqlDbType.VarChar, 50);
parameter2.Value = "Your Value";
command.Parameters.Add(parameter2);
command.ExecuteNonQuery();
connection.Close();
這是一個簡單的示例,展示了如何在C#中使用SqlParameter與存儲過程進行交互。根據實際需求,您可能需要調整代碼以適應不同的存儲過程和參數。