SELECT
*
FROM
tbl_order o
INNER JOIN
tbl_contact c
ON
c.ContactId = o.BillingContactId
The above query for an e-commerce store is nice and simple.
If I were to move all of my contacts data into a CRM such that its stored in a different database and the e-commerce database references contacts via a guid and fetches their data via a WCF service, how would I create an equivalent query?
Would this be too slow and ought I instead keep a copy of the contacts data in the e-commerce database?