इस कोड को आजमाएं:
SqlParameter unitsParam = command.Parameters.AddWithValue("@units", units);
if (units == null)
{
unitsParam.Value = DBNull.Value;
}
और आपको शून्य मान के लिए अन्य सभी मापदंडों की जांच करनी चाहिए। यदि यह शून्य है तो आपको DBNull.Value
pass पास करना होगा मूल्य।