views:

33

answers:

1

Is it possible for an entity object to connect to 2 databases?

+1  A: 

No, the model is based on a single database. If you need data from another database (assuming SQL Server), create a view against the other database and import the view into your model.

Stephen Newman