I'm working in Entity Framework 6 for the first time. I downloaded the tutorial and used it to start my program. I'm using Entity Framework as a method of connecting to two different servers to pull data and store them in variables. I followed the tutuorial exactly and have it set up the exact same way. Below is what I have so far in the main module. If there's anything else you need to see, let me know. Hope this is enough info. Thanks!
JobCodesContext = New LicensingRepository_DvlpEntities1
Dim JobCodeQuery As ObjectQuery(Of ControlTrackedJobCode) =
From Element In JobCodesContext.ControlTrackedJobCodes.Include("JobCode")
Select Element