-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
LLBLGen Pro v2.6 (Adapter code)
.NET 3.5
SQL Server 2005
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
I have multiple 1 : m and m : n relationships where the relationship crosses schema boundries. In this case, we are planning for future expansion where each schema would be able to easily be moved into its own database and onto its own server.
For example:
Table: Resource.ResourceContact[/u]
ResourceID bigint PK
ContactUI uniqueidentifier PK
Table: Resource.Resource
ResourceID bigint PK
ResourceTypeID int FK
ResourceStatusID int FK
{etc..........}
ResourceUI uniqueidentifier ROWGUIDCOL (unique key index)
Table: Contact.Contact
ContactID bigint PK
ContactStatusID int FK
{etc.................}
ContactUI uniqueidentifier ROWGUIDCOL (unique key index)
Now, is it possible to create a relationship between Resource.ResourceContact.ContactUI and Contact.Contact.ContactUI in LLBLGen? I would like to be able to traverse these types of relationships as easily as any other relationship in LLBLGen.