I am using v0.18.2.1 and when I try to receive a NULL value from a stored procedure call (MS SQL), it is being returned as a 0. I saw the other thread where someone had a similar issue with a date value and that prompted me to get the latest version, but still no luck.
public class HireInfographicLicensingTest : LicensingTest
{
public decimal? PassPercentage { get; set; }
public List<HireInfographicLicensingTest> GetHireInfographicLicensingTests(int accountId)
{
//return Database.Open().GetHireInfographicLicensingTests(accountId);
List<HireInfographicLicensingTest> hireInfographicLicensingTests;
hireInfographicLicensingTests = Database.Open().GetHireInfographicLicensingTests(accountId);
return hireInfographicLicensingTests;
}