I was hoping there was a way to fetch an entity using a relation.
Here are my tables with the significant columns:
Package
-PackageID
PackageOption
-PackageOptionID
-PackageID
Contract
-PackageOptionID
I'm working with a Contract which has the PackageOptionID. Is there a way that I can fetch just a PackageEntity using the PackageOptionID? FetchEntityUsingUniqueConstraint only allows a predicate expression parameter. I was looking forward to being able to pass it a RelationPredicateBucket to allow me to use a join to select my package without having to select the PackageOption and prefetch the Package.
I'm using LLBLGenPro 2.0.0.0 with the adapter template.