Finance Law

Stored Procedure returns value for a column but FromSqlRaw returns null for the class property

I have a class that is called by multiple methods. This class is: public class Policy : EntityObject { public Guid PolicyId { get; set; } public Guid CustomerId { get; set; } public string PolicyNumber { get; set; } [NotMapped] public string TrimmedPolicyNumber { get; set; } public DateTime? PolicyEffectiveDate { get; set; } […]