Bạn không thể chỉ gọi tên hàm, bạn sẽ cần viết một câu lệnh SQL nội dòng sử dụng UDF:
SqlCommand Totalf = new SqlCommand("SELECT dbo.Tcupom(@code)", conex1);
Và loại bỏ CommandType
, đây không phải là một Thủ tục được Lưu trữ, nó là một Chức năng do Người dùng Xác định.
Nói chung:
public void TotalCupom(int cupom)
{
float SAIDA;
SqlDataAdapter da2 = new SqlDataAdapter();
if (conex1.State == ConnectionState.Closed)
{
conex1.Open();
}
SqlCommand Totalf = new SqlCommand("SELECT dbo.Tcupom(@code)", conex1);
SqlParameter code1 = new SqlParameter("@code", SqlDbType.Int);
code1.Value = cupom;
SAIDA = Totalf.ExecuteScalar();
return SAIDA;
}