Skip to content

Commit

Permalink
Fixed "Data is null" exception when NumberOfShortInspectionsSinceLast…
Browse files Browse the repository at this point in the history
…FullInspection is null in the database but it is set as not null in the EF entity (#672)
  • Loading branch information
FrostyApeOne authored Jan 15, 2025
1 parent 6e07178 commit f1742d1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class FurtherEducationEstablishment
public string? Region { get; set; }
public string? OfstedRegion { get; set; }
public string? DateOfLatestShortInspection { get; set; }
public int NumberOfShortInspectionsSinceLastFullInspection { get; set; }
public int? NumberOfShortInspectionsSinceLastFullInspection { get; set; }
public string? InspectionNumber { get; set; }
public string? InspectionType { get; set; }
public string? FirstDayOfInspection { get; set; }
Expand Down

0 comments on commit f1742d1

Please sign in to comment.