Hi ,
i have custom "class" entity which contains "course" lookup. in my code i have a list of course GUIDs and i want to perform a join query between this list and classes records , but it's not working, this exception occurs : {"Invalid 'join' condition. An entity member is invoking an invalid property or method."}.
here is my code :
using (var orgContext = crmConnection.GetContext()){ var w = (from c in orgContext.CreateQuery<New_class>() join courseId in courseIds on c.new_courseid.Id equals courseId select c).ToList(); }
courseIds is the list of course GUIDs