I have the following tables in the database (just a demo, of course):
Positions
PositionId
Limits
LimitId PositionId
I want to left join them into a single entity (always have position, not always have a limit attached to it):
Position
PositionId LimitId
I've seen articles regarding one-to-one mapping and "Table per type inheritence", and tried to implement the same method here, but with no sucess. Is that even possible?