Is it possible to create an 'Entity' that will be an abstraction of a relationship between tables that live in two different tables, in two different databases, on two different machines, and even possibly using two different dbms?
For example, if I have a SQL Server db on one machine that stores all my customers, and I have an Oracle db on a different machine that stores all my orders, is it possible to wrap this in an entity and then use the entity in a LINQ expression as if they were together?
Thanks!