Hello i have the following Stored Procedure fro inserting records in Northwind database. My problem is that it doesn't seems to work with my C# code.SPROC:CREATE PROCEDURE INSERT_ORDERS(@CustomerID nchar(5),@Freight money,@OrdersID int output)ASINSERT Orders (CustomerID,Freight)VALUES(@CustomerID,@Freight)SELECT @OrdersID=@@IDENTITYGO private void saveToolStripButton_Click(object sender, EventArgs e) { string connectionString = @"Server=OP; Initial Catalog=Northwind; Integrated Security=True"; using (SqlConnection conn = new SqlConnection(connectionString)) { SqlCommand command = new SqlCommand("INSERT_ORDERS", conn); command.CommandType = CommandType.StoredProcedure; SqlParameter param = new SqlParameter("@OrderID", Convert.ToDecimal(orderID_txt.Text)); param.Direction = ParameterDirection.Output; command.Parameters.Add("@CustomerID", SqlDbType.VarChar).Value = custID_txt.Text; command.Parameters.Add("@Freight", SqlDbType.Money).Value = freight_txt.Text; conn.Open(); int rows = command.ExecuteNonQuery(); orderID_txt.Text = ((int)param.Value).ToString(); conn.Close(); } }Any suggestions?Thank you in advance.