Using Gen Pro 3.0 Final (Oct 22nd, 2010), SelfServicing, .NET 3.5, and Sql Server 2005.
Here is the sql I'm trying to implement in C# with Gen Pro:
select * from Visit v
inner join MRNLink l on v.FacilityID = l.FacilityID
and v.MedicalRecordID = l.MedicalRecordID
where l.EnterprisePatientID = xxxxx
FacilityID is a foreign key column to the Facility table; both Visit and MRNLink have this column.
MedicalRecordID is a string value without constraint. I'm expecting zero or more VisitEntities per EnterprisePatientID.
The problem I have is over coming the two hits of a) no MRNLinkEntity.Relations to the VisitEntity, and b) an AND clause on the join (not a .CustomFilter on the join).
This might be a case of not seeing the forest for the trees....