Hello William,
BOM enumerate the
Databases in the server defined by the connection string, not the linked servers.
If you want to get visible the objetcs of a linked server, you should create a view on each table you need in the linked server. The SQL view stays in the "local" SQL database, and is visible in the BO mapper. And then you'll see all the columns of the linked table.
Using that workaround, I have my VFP tables in the SQL server. My BO project is connected on one SQL database (where are real SQL tables),
You may see a BO related to a linked server, where I've configured a specific connection string to another SQL database :
This SQL database is hosting a view to a VFP table in a VFP linked server:
And the final result is a BO where all the columns I need are available:
In summary:
The data are in a linked server (whatever it is, SQL, VFP, Pervasive, ...), a SQL database hosts views to these data, and a BO maps this view.