Here is what I was trying to do.
I have an entity called 'VendorPartEntity'.
It has a primary key of 'VendorID' + 'PartNumber'.
Both 'VendorID' and 'PartNumber' are also foreign keys to tables 'Vendor' and 'Part' respectively.
I am able to bind to the PartNumber property on the 'VendorPartEntity'.
I would also like to bind a 'TextBox' to the 'Description' property of the 'PartEntity' contained in the 'VendorPartEntity' object. So I would have a textbox 'partDescriptionTextBox' that was bound to 'vendorPartEntity.Part.Description'.
I am able to bind to EntityCollections contained in an entity just not 'Fields on relations'.
I also realized that I can create a 'Field on related fields' property in the LLBLGen designer.
Is that the only way?