Is there an alternative to using Include for loadable objects?
The reason I can't use Include is because it is case sensitive.
Consider the following example:
I have two tables:


Pay attention to the difference in the case.
When I want to receive a Sager Stamkartotek load, I use Include , but Include does not load Stamkartotek :

** Update 1 **
I noticed this strange behavior - if I use any fields from Stamkartotek , it connects correctly: 
But if I go and get only the value Stam_nr instead of the whole object - it gives me A instead of A :

Research so far:
- The EF team is aware of this problem - but decided not to fix it.
- This guy has the same problem only using code-one - no solution found
Update 2
SQL created using Include :
FROM [dbo].[Sager] AS [Extent1] INNER JOIN [dbo].[Stamkartotek] AS [Extent2] ON [Extent1].[Klient_Stam_nr] = [Extent2].[Stam_nr] WHERE 'jek15' = [Extent1].[Sags_nr]
Update 3
By loading them into individual requests and letting changetracker fix the link. It doesn't work either:

source share