// Partial-class extension for the Verified.Vehicles entity used by the licence // issue flow. The three description columns are added by DBUp script 109 and // aren't in the .edmx yet — EF won't persist them automatically, so the save // path writes them via raw SQL. Once the .edmx is regenerated they can move out // of this file. namespace Neo.LegitimateLicences.LicenceIssueRequest.Models.Database { public partial class Vehicle { public string VehicleMakeDescription { get; set; } public string VehicleModelDescription { get; set; } public string VehicleTypeDescription { get; set; } } }