Anda tidak bisa hanya memanggil nama fungsi, Anda harus menulis pernyataan SQL sebaris yang menggunakan UDF:
SqlCommand Totalf = new SqlCommand("SELECT dbo.Tcupom(@code)", conex1);
Dan hapus CommandType
, ini bukan Prosedur Tersimpan, ini adalah Fungsi Buatan Pengguna.
Secara keseluruhan:
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;
}