LLBLGen Pro Version: 1.0.2005.1 Final
Database: SQL 2005
Hello,
I'm having issues trying to preform a left-join prefetch on a relation. Basically, i have a list of skills (ListIndustrialSkills) which applicant's can select. When they make this selection, a record is placed in ApplicantIndustrialSkill (holds ListIndustrialSkillID which is primary key of ListIndustrialSkills). ApplicantIndustrialSkill also houses AppID, which is the primary key of the application.
My ListIndustrialSkills has a field ApplicantIndustrialSkills, which holds the EntityCollection of all ApplicantIndustrialSkills w/ ApplicantIndustrialSkills.ListIndustrialSkillID of that particular skillID.
I'm wondering if there is anyway for me to preform a left join on this relation. My goal is to pull down ALL of the ListIndustrialSKills, as well as any ApplicantIndustiralSkill that MAY have been selected by the particular applicant (ApplicantIndustrialSkill = particular AppID)
So, that if i have the AppID, i can pull down all the ListIndustrialSkills, plus, if the appID matches, the ListIndustrialSkill will also have it's ApplicantIndustrialSkill populated.
Does this make sense? I simply want my prefetch to preform a left-join.
THanks in advance,
Adam