OK, I think I got everything summarized in that subject line. Here's the situation: I've got two fields in TableA that make up a unique constraint. They are then used as a foreign key in TableB. This foreign key does not generate a relation in LLBLGen, because it doesn't involve a primary key. I'd like to be able to get a collection of TableBEntity and prefetch the TableAEntity that is related via the foreign key tied to the unique constraint.
I'm using Sql Server 2005 and adapter.
Is this even possible?
Thanks.