I have a pretty straight forward set of database tables, like:...Vehicle
Id
RegNo
Car
Id (FK of Vehicle.Id)
OtherStuff
Bike
Id (FK of Vehicle.Id)
MoreStuff
...My class model is as you'd expect: with Vehicle being an abstract class, and then Car an...