// Partial-class extension for ApplicationLicenceVehicleDetail. // VehicleMakeDescription is already on the EF-mapped class. The two below are // new columns added by DBUp script 109. They're not in the .edmx yet, so EF // won't persist them automatically — the controller writes them via raw SQL // after the EF save. Once the .edmx is regenerated they can be removed from // here. namespace Neo.LegitimateLicences.ApplicationRequest.Models.Database { public partial class ApplicationLicenceVehicleDetail { public string VehicleModelDescription { get; set; } public string VehicleTypeDescription { get; set; } } }